哪里有问题

来源:4-3 分支结构之多重if-else语句

慕侠0287476

2017-04-29 17:53

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score>=10000)

    {

        printf("%s\n","钻石玩家");

    }

    else if(score>=5000&&<10000)

    {

        printf("%s\n","白金玩家");    

    }

    else if(score>=1000&&<5000)

    {

        printf("%s\n","青铜玩家");     

    }

    else

    {

        printf("%s\n","普通玩家");    

    }

    return 0;

}


写回答 关注

4回答

  • smida
    2017-04-29 22:28:07
    已采纳

    else if(score>=5000&& score<10000)这里掉了一个score,同学你好,学习编程可不能粗心哟


    慕侠0287...

    非常感谢!

    2017-04-30 17:29:46

    共 1 条回复 >

  • 奇怪的阿怪
    2017-07-20 23:12:03

    有if才能有括号,最后一个是else,不是else if,所以后面不应该加任何东西,else已经是上面情况的补集了,足矣。

  • 慕侠0287476
    2017-05-04 16:01:58

    同学,你好,你的英语打错了。应该是score,要细心点哦

  • 慕尼黑4337571
    2017-05-03 16:42:43

    #include <stdio.h>

    int main() 

    {

        int score = 7200;

        //完善一下代码

        if(score >= 10000)

        {

            printf("%s\n","钻石玩家");

        }

        else if(score >= 5000)

        {

            printf("%s\n","白金玩家");    

        }

        else if(score >= 1000)

        {

            printf("%s\n","青铜玩家");     

        }

        else(scpre <1000)

        {

            printf("%s\n","普通玩家");    

        }

        return 0;

    }

    我这哪里错了    (scpre <1000) 为什么只有我删了这个才可以通过

    慕粉4020...

    注意下条件,score>=1000包含了socre>5000,score>10000等条件

    2017-05-25 11:50:19

    共 1 条回复 >

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926025 学习 · 20793 问题

查看课程

相似问题