标签:输入 color name col turn scan return clu 个数
第一行输入n,表示要输入数的个数,第二行输入n个数字。要求把这n个数从大到小排序。
输入样例:
6
1 3 5 8 3 9
输出样例:
1 3 3 5 8 9
#include<iostream> #include<cstdio> using namespace std; int a[1001]; int main() { int n,m; scanf("%d",&n); for(int i=1;i<=n;i++) { scanf("%d",&m); ++a[m]; } for(int i=0;i<=1001;i++) { for(int j=1;j<=a[i];j++) { printf("%d ",i); } } return 0; }
标签:输入 color name col turn scan return clu 个数
原文地址:https://www.cnblogs.com/xrj1229/p/9220994.html