手机怎么用输入法打出分段函数?
发布网友
发布时间:2022-04-21 08:42
我来回答
共3个回答
热心网友
时间:2023-09-28 10:57
main()
{ int x,y;
scanf("%d",&x);
if(x<60)
{y=0;}
if(60<=x && x<70)
{y=1;}
if(70<=x && x<80)
{y=2;}
if(80<=x && x<90)
{y=3;}
if(x>=90)
{y=4;}
printf("%d\n",y);
getch();
}
热心网友
时间:2023-09-28 10:57
main()
{
int
x,y;
scanf("%d",&x);
if(x<60)
{y=0;}
if(60<=x
&&
x<70)
{y=1;}
if(70<=x
&&
x<80)
{y=2;}
if(80<=x
&&
x<90)
{y=3;}
if(x>=90)
{y=4;}
printf("%d\n",y);
getch();
}
热心网友
时间:2023-09-28 10:57
结尾没有return 0而且,把60<= x<70这类的改为60<= x且(两个寻址符)x<70就可以了。最后的那个/ n错了