第一题 (不知道可不可以啊)
#include <stdio.h>
void main()
{
int tmp;
int a[] = {8,6,5,4,1};
int count = sizeof(a)/sizeof(int); //数组中数的个数
for(int i=0 ; i<count/2 ; i++)
{
tmp = a[i];
a[i] = a[count-i];
a[count-i] = tmp;
}
for(i = 0 ; i<count ; i++)
{
printf("%d",a[i]);
}
}