Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
40199 王子诺 变量交换 C++ Accepted 1 MS 268 KB 153 2022-10-14 20:34:27

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c=0; cin>>a>>b; c=a;a=b;b=c; cout<<a<<' '<<b<<endl; return 0; }