Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
64865 | zhangweiran | 交换变量 | C++ | Accepted | 0 MS | 240 KB | 142 | 2025-04-29 10:27:31 |
#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; }