#include<stdio.h>
#define N 10
int main()
{
int i,j;
int a[N];
for(i=1;i<10;i++){
for(j=9;j>0;j--){
scanf("%d",&a[i]);
}
}
for(j=9;j>0;j--){
printf("%d",a[j]);
}
return 0;
}
#include<stdio.h>
#define N 10
int main()
{
int i,j;
int a[N];
for(i=0;i<10;i++){
scanf("%d",&a[i]);
}
for(j=9;j>=0;j--){
printf("%d",a[j]);
}
return 0;
}
能把错误截图出来吗,楼上的代码没问题,不知道错在哪