帮忙看错在哪里?
#include<stdio.h>int main(void)
{
int x,y;
scanf("%d",&x);
if(x<1)
{
y=x;
printf("y=%d",y);
}
else if(x>=1&&x<10)
{
y=2x-1;
printf("y=%d\n",y);
}
else if(x>=10)
{
y=3x-11;
printf("y=%d\n",y);
}
system("pause");
return 0;
}

人生就是个死循环,退出这个循环的条件是系统停止。