放到最后,退出主程序之前,一闪而过是因为程序运行完了就退出了
printf("%d\t",a[i]);
system("pause");
}
放在最后的大括号前面。
#include
#include
int main()
{
int x,j,i,a[10];
for(j=0;j<10;j++)a[j]=j;
printf("x and i");
scanf("%d%d",&x,&i);
a[i]=x;
for(j=1;j<11;j++)
a[j+1]=j;
for(j=0;j<11;j++)
printf("%d\t",a[i]);
system("pause");
}