将一个长度为10的整型数组中的值按逆序重新存放。
如:原来的顺序为1,2,3,4,5,6,7,8,9,0,要求改为0,9,8,7,6,5,4,3,2,1
标签:bsp ems enter 登录 blank title stdio.h 一个 http
将一个长度为10的整型数组中的值按逆序重新存放。
如:原来的顺序为1,2,3,4,5,6,7,8,9,0,要求改为0,9,8,7,6,5,4,3,2,1
从键盘上输入以空格分隔的10个整数。
1 2 3 4 5 6 7 8 9 0
0
9
8
7
6
5
4
3
2
1
参考代码:
#include<stdio.h>
int main(){
int i,temp;
int a[10];
for(i=0;i<10;i++){
scanf("%d",&a[i]);
}
for(i=0;i<5;i++){
temp=a[i];
a[i]=a[9-i];
a[9-i]=temp;
}
for(i=0;i<10;i++){
printf("%d\n",a[i]);
}
return 0;
}
标签:bsp ems enter 登录 blank title stdio.h 一个 http
原文地址:http://www.cnblogs.com/zhhjthing/p/7746203.html