手机怎么用输入法打出分段函数?

发布网友 发布时间: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错了
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top