有没有人该我代码啊

4 条评论

  • @ 2025-9-24 15:39:22

    对,哪里难了

    • @ 2025-8-4 14:16:11

      哪里难了

      • @ 2025-6-5 16:22:10
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
            int a,b;
            cin>>a>>b;
            cout<<a/b<<" "<<a%b;
            return 0;
        }
        
        
        
        • #include<bits/stdc++.h> using namespace std; int main() { int a,b; cin >> a>> b;
          int quotient = a/b;
          int remainder = a%b;
          cout << quotient << " " << remainder;
          return 0; }

          • 1

          信息

          ID
          10
          时间
          ms
          内存
          MiB
          难度
          1
          标签
          递交数
          376
          已通过
          159
          上传者