System Error
正在同步测试数据,请稍后 题目配置出现错误。请联系题目上传者。 Total time limit longer than {0}s. Cancelled. [60] 自豪的采用HydroJudge(https://github.com/hydro-dev/Hydro)进行评测。
代码
#include<iostream>
using namespace std;
int main()
{
int a[10];
for(int i=0;i<10;i++) cin>>a[i];
for(int i=0;i<10;i++)
for(int j=i+1;j<10;j++)
if(a[i]>a[j])
swap(a[i],a[j]);
for(int i=0;i<10;i++) cout<<a[i]<<" ";
return 0;
}