解题思路:
注意事项:
参考代码:
#include<stdio.h>
#include<string>
#include<algorithm>
#include<cstring>
#include<iostream>
#include<vector>
#include<iomanip>
using namespace std;
int main(){
int str[10000];
int n(0),i(0),j(0);
while(cin>>n){
if(n==0){
break;
}
else{
str[i++]=n;
j++;
}
}
for(int k=j-1;k>=0;k--){
cout<<str[k]<<" ";
}
return 0;
}
0.0分
0 人评分
A+B for Input-Output Practice (VII) (C语言代码)浏览:1414 |
C语言训练-字符串正反连接 (C语言代码)浏览:727 |
C语言训练-舍罕王的失算 (C语言代码)浏览:1054 |
【回文数(二)】 (C语言代码)浏览:940 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
【出圈】 (C语言代码)浏览:824 |
WU-输出正反三角形 (C++代码)浏览:1098 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:751 |
1118(求助_已解决)浏览:351 |
核桃的数量 (C语言代码)浏览:893 |