问答详情
源自:4-3 分支结构之多重if-else语句

大神帮帮忙

为什么最后的普通玩家的判断可以不写啊!!!!!

提问者:浮生世绘 2018-04-13 16:40

个回答

  • Simonbj
    2018-07-16 13:01:52

    #include <stdio.h>

    int main() 

    {

        int score = 7200;

        //完善一下代码

        if(score>=10000)

        {

            printf("钻石玩家");

        }

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

        {

            printf("白金玩家");    

        }

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

        {

            printf("青铜玩家");     

        }

        else if(score<1000)

        {

            printf("普通玩家");    

        }

        return 0;

    }


  • 浮生世绘
    2018-04-13 16:41:33

    判断语句只能用else if,单独else不能写判断语句