7 条题解

  • 0
    @ 2026-8-3 17:06:37

    你是抄题解的坏孩子

    • 0
      @ 2026-7-8 15:39:46
      #include <iostream>
      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-6-6 12:52:56

        #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"; return 0; }

        • 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; }

              • -1
                @ 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
                难度
                5
                标签
                (无)
                递交数
                558
                已通过
                197
                上传者