Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
60581 | wangyuchun | 交换变量 | C++ | Accepted | 0 MS | 252 KB | 158 | 2025-01-26 20:36:12 |
#include<iostream> using namespace std; int main() { int a,b,t; cin>>a>>b; t = a; a = b; b = t; cout<<a<<" "<<b; return 0; }