# include <stdio.h>
void main ()
{
int x,y;
scanf("%d",&x);
if(x<1)
y=x;
else
if (x>10);
y=3*x-11;
else
if
(1<x<10)
y=2*x-1;
printf("x=%d,y=%d\n",x,y);
}
请教个位大大 哪错了 谢谢了!
# include <stdio.h>
void main ()
{
int x,y;
scanf("%d",&x);
if(x<1)
y=x;
else
if (x>10);
y=3*x-11;
else
if
(1<x<10)
y=2*x-1;
printf("x=%d,y=%d\n",x,y);
}
请教个位大大 哪错了 谢谢了!
你后面是else if吧,应该是分号的问题!
if (x>10);
多了個分號