21201 - 成绩排序

#include<bits/stdc++.h>
using namespace std;
int main(){
	int a[20];
	for(int i=1;i<=10;i++) cin>>a[i];
	for(int i=10;i>=2;i--){
		for(int j=1;j<=i-1;j++){
			if(a[j]<a[j+1]) swap(a[j],a[j+1]);
		}
	}
	for(int i=1;i<=10;i++) cout<<a[i]<<" ";
	return 0;
}