解题思路:
注意事项:
参考代码:
#include<iostream>
#include<iomanip>
using namespace std;
int main() {
int a[10];
for(int i=0;i<10;i++){
cin>>a[i];
}
for(int i=9;i>0;i--){
cout<<a[i]<<" ";
}
cout<<a[0];
return 0;
}
0.0分
0 人评分
C二级辅导-同因查找 (C语言代码)浏览:592 |
printf基础练习2 (C语言代码)浏览:648 |
钟神赛车 (C++代码)浏览:905 |
C语言训练-字符串正反连接 (C语言代码)浏览:664 |
字符串对比 (C语言代码)浏览:1471 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:484 |
A+B for Input-Output Practice (V) (C语言代码)浏览:640 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:751 |
用筛法求之N内的素数。 (C语言代码)浏览:890 |
三角形 (C语言代码)浏览:965 |