数组小问题!!(已解决)
这道题我不知道那里错,就是逆序!把第一个元素放和最后的换转,第二个和倒数第2的换转..............................
我不知错在那里```有空来改改!!
#include <stdio.h>
#define N 10
void main()
{
int g[N],i,j,t;
printf("请输入要倒转的数字(10个内):");
for (i=0;i<N;i++)
{
scanf("%d",&g[N]);
}
for (j=0;j<N-1-j;j++)
{
t=g[j];
g[j]=g[N-j];
g[N-j]=t;
t=0;
}
for (i=0;i<N;i++)
{
printf("\n%d",g[i]);
}
}