| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147235 | 李朋秦 | 打印每一趟选择排序 | C++ | Wrong Answer | 0 MS | 272 KB | 333 | 2026-02-03 16:42:37 |
#include<bits/stdc++.h> using namespace std; int main() { int n,a[2001]; cin>>n; for(int i=0;i<n;i++)cin>>a[i]; for(int i=0;i<n-1;i++){ for(int j=i+1;j<n;j++){ if(a[i]>a[j]){ int t=a[i]; a[i]=a[j]; a[j]=t; } } for(int x=0;x<n;x++){ cout<<a[x]<<" "; }cout<<endl; } return 0; }
------Input------
5 5 4 3 2 1
------Answer-----
1 4 3 2 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5
------Your output-----
1 5 4 3 2 1 2 5 4 3 1 2 3 5 4 1 2 3 4 5