3 条题解

  • 0
    @ 2026-9-17 16:18:40
    • -1
      @ 2026-7-4 14:21:10
      #include <bits/sdc++.h>
      using namespace std;
      
      main() {
      	int a = 20, b = 22, c;
      	c = a;
      	a = b;
      	b = c;
      	cout << "a=" << a << endl;
      	cout << "b=" << b;
      	return ;
      }
      
      • -1
        @ 2026-5-14 21:43:21
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
            cout<<"a=22"<<endl;
            cout<<"b=20"<<endl;
            return 0;
        }
        
        • 1

        信息

        ID
        116
        时间
        1000ms
        内存
        64MiB
        难度
        5
        标签
        递交数
        938
        已通过
        329
        上传者