解题思路:
注意事项:
参考代码:
#include<iostream> #include<cstdio> #include<string> #include<cmath> #include<algorithm> #include<climits>//因为使用了SHRT_MAX using namespace std; int main() { int a[10]={0}; for(int i=0;i<10;i++) { cin>>a[i]; } sort(a,a+10); for(int i=9;i>=0;i--) { cout<<a[i]<<" "; } cout<<endl; return 0; }
0.0分
0 人评分
C语言训练-斐波纳契数列 (C语言代码)浏览:1272 |
数组输出 (C语言代码)错误???浏览:602 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1264 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:583 |
核桃的数量 (C语言代码)浏览:893 |
永远的丰碑 (C语言代码)浏览:608 |
理财计划 (C语言代码)浏览:494 |
整除问题 (C语言代码)浏览:594 |
C语言程序设计教程(第三版)课后习题12.2 (C语言代码)浏览:839 |
C语言训练-大、小写问题 (C语言代码)浏览:719 |