Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91014 | 孙诗皓 | 选择排序-函数 | C++ | Wrong Answer | 0 MS | 264 KB | 557 | 2024-09-20 20:46:00 |
#include<iostream> #include<cmath> using namespace std; int main(){ int n,t; cin>>n; int a[n]; for(int i=0;i<n;i++) cin>>a[i]; for(int i=0;i<n-1;i++) { bool b=false; for(int j=0;j<n-1-i;j++) { if(a[j]<a[j+1]) { b=true; t=a[j]; a[j]=a[j+1]; a[j+1]=t; } } if(b==false) break; } for(int i=0;i<n;i++) cout<<a[i]<<' '; return 0; }
------Input------
20 1 3 5 7 9 10 6 4 2 8 21 23 19 30 17 13 18 90 28 14
------Answer-----
1 2 3 4 5 6 7 8 9 10 13 14 17 18 19 21 23 28 30 90
------Your output-----
90 30 28 23 21 19 18 17 14 13 10 9 8 7 6 5 4 3 2 1