简单问题
#include "stdio.h"#include "conio.h"
main()
{
int x[5],i,y=0;
for(i=0;i<5;i++)
scanf("%d",&x[i]);
if(x[i]<0||x[i]>100)continue;
x[y++]=x;
for(i=0;i<y;i++)
printf("%d\t",x[i]);
getch();
}
求解 错误 noname.c 11: 'continue' 位置错在 main 函数中
警告 noname.c 12: 不可移动的指针(地址常数)赋值在 main 函数中
刚学不懂,请大家帮忙看一下。