解题思路:
注意事项:
参考代码:
#include <iostream>
#include <algorithm>
using namespace std;
int main ()
{
int a;
while(scanf("%d",&a) == 1){
int *p=new int [a];
for(int j=0;j<a;j++){
scanf("%d",p+j);
}
sort(p,p+a,greater<int>());
for(int i=0;i<a;i++){
printf("%d ",*(p+i));
}
printf("\n");
}
return 0;
}
0.0分
2 人评分
第一浏览:919 |
假币问题 (C++代码)(向上取整的一种处理方式)浏览:1801 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:640 |
C语言训练-立方和不等式 (C语言代码)浏览:779 |
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:941 |
WU-输出正反三角形 (C++代码)浏览:1098 |
字符逆序 (C语言代码)浏览:706 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
简单的a+b (C语言代码)浏览:529 |
关于float,double变量的几点说明浏览:1926 |