为了账号安全,请及时绑定邮箱和手机立即绑定

想知道这个这么运行,想输入一个数字,自动评级

http://img1.sycdn.imooc.com//5dfcce1000013d1004360526.jpg这怎么改啊啊啊啊

正在回答

2 回答

#include<stdio.h>

int main()

{

    int x;

    scanf("%d",&x);

    if(x>=90)

    {

        printf("%s\n","A");

    }

    else if(x>=80)

    {

        printf("%s\n","B");

    }

    else if(x>=70)

    {

        printf("%s\n","C");

    }

    else if(x>=60)

    {

        printf("%s\n","D");

    }

    else{printf("%s\n","E");}

}


1 回复 有任何疑惑可以回复我~
#1

慕运维3082854 提问者

可以加一个不在0到100的输出结果为wrong吗
2019-12-21 回复 有任何疑惑可以回复我~

#include<stdio.h>

int main()

{

    int x;

    scanf("%d",&x);

    if(x>=0&&x<=100){

    if(x>=90)

    {

        printf("%s\n","A");

    }

    else if(x>=80)

    {

        printf("%s\n","B");

    }

    else if(x>=70)

    {

        printf("%s\n","C");

    }

    else if(x>=60)

    {

        printf("%s\n","D");

    }

    else

    {

        printf("%s\n","E");

    }

    }

     else{printf("%s\n","wrong");}

   

}



0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

想知道这个这么运行,想输入一个数字,自动评级

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信