标签:main nbsp 数组 练习 can 算法 turn return 起点
#include<stdio.h>
int main(){
int T,i,j,a[20];
scanf("%d",&T);
for(i=1;i<=T;i++){
int n;
scanf("%d",&n);
for(j=0;j<n;j++){
scanf("%d",&a[j]);
}
for(i=n-1;i>0;i--){
printf("%d ",a[i]);
}
printf("%d\n",a[0]);
}
return 0;
}
Problem A: 零起点学算法80——逆序输出(数组练习)
标签:main nbsp 数组 练习 can 算法 turn return 起点
原文地址:https://www.cnblogs.com/ars134419622/p/9926116.html