| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 307677 | 陈思陶 | 【C1-4】数据交换 | C++ | Accepted | 100 | 1 MS | 248 KB | 138 | 2025-01-04 11:16:41 |
#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b; c=a; a=b; b=c; cout<<a<<' ' <<b; return 0; }