逆序输出
程序员文章站
2022-03-22 08:13:17
...
输完数据后,按回车,再按ctrl+z,最后再按回车
#include <stdio.h>
#define maxn 105
int a[maxn];
int main()
{
int n=0,x,i;
while(scanf("%d",&x)==1)
a[n++]=x;
for(i=n-1;i>=1;i--)
printf("%d ",a[i]);
printf("%d\n",a[0]);
return 0;
}
上一篇: 国内常用的js类库大全(CDN公共库)
下一篇: 逆序输出数值