4 条题解

  • 0
    @ 2026-5-23 10:17:28

    #include <bits/stdc++.h> using namespace std;

    int main() { cout << 4396 + 2200 << "\n"; cout << 4396 - 2200 << "\n"; cout << 4396 * 2200 << "\n"; cout << 4396 / 2200 << "\n"; cout << 4396 % 2200 << "\n"; }

    • 0
      @ 2026-5-21 21:04:09

      #include <bits/stdc++.h> using namespace std;

      int main() { cout << 4396 + 2200 << endl; cout << 4396 - 2200 << endl; cout << 4396 * 2200 << endl; cout << 4396 / 2200 << endl; cout << 4396 % 2200 << endl;

      return 0;
      

      }

      • 0
        @ 2026-5-17 9:27:00

        #include <bits/stdc++.h> using namespace std;

        int main() { int a=4396,b=2200; cout<<a+b<<endl; cout<<a-b<<endl; cout<<a*b<<endl; cout<<a/b<<endl; cout<<a%b<<endl; return 0; }

        • 0
          @ 2026-5-16 11:13:33

          #include using namespace std;

          int main() { cout << "6596" << endl; cout << "2196" << endl; cout << "9671200" << endl; cout << "1" << endl; cout << "2196" << endl;

          return 0;
          

          }

          • 1

          信息

          ID
          18206
          时间
          1000ms
          内存
          256MiB
          难度
          6
          标签
          (无)
          递交数
          429
          已通过
          133
          上传者