| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144857 | c13 | 07交换数据II | C++ | Accepted | 0 MS | 272 KB | 196 | 2026-01-24 19:16:27 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[2]; for(int i=0;i<2;i++)cin>>a[i]; sort(a,a+2); for(int i=0;i<2;i++)cout<<a[i]<<' '; cout<<endl; return 0; }