C语言【程序35】 题目:将一个数组逆序输出。 Myth丶恋晨 2023-05-28 15:53 3阅读 0赞 //【程序35】 //题目:将一个数组逆序输出。 #include<stdio.h> int str[10]={ 3,2,6,7,5,9,1,8,4}; int main() { int i,j,n,tmp; for(n=0;str[n]!=0;n++); for(i=0;i<n/2;i++) { tmp=str[i]; str[i]=str[n-i-1];//这里str[n-i-1]:因为数组下标是从0开始的 str[n-i-1]=tmp; } for(i=0;i<n;i++) { printf("%d ",str[i]); } return 0; }
还没有评论,来说两句吧...