请问大神,我这个哪里错了

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

慕姐6253430

2017-11-11 19:51

#include <stdio.h>

int main()

{

    int score = 7200;

    //完善一下代码

    if(score >= 10000)

    {

    

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

    }

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

    {

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

    }

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

    {

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

    }

    else(score < 1000)

    {

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

    }

    return 0;

}


写回答 关注

3回答

  • qq_分流_0
    2017-11-18 23:09:20

    把else里面的东西删掉

    else里面不可以有东西

  • 安仁123456789
    2017-11-11 21:27:11

    要在大括号里

  • 安仁123456789
    2017-11-11 21:25:42

    #include <stdio.h>

    int main() 

    {

        int score = 7200;

        //完善一下代码

       if(score>=10000) 

        {

            printf("钻石玩家");

        }

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

        {

            printf("白金玩家");    

        }

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

        {

            printf("青铜玩家");     

        }

                else

        {

            printf("普通玩家");    

        }

        return 0;

    }


C语言入门

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

926021 学习 · 20793 问题

查看课程

相似问题