请问是哪里错了

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

慕标9373483

2019-11-25 01:22

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    

    {

       printf("钻石玩家");

    else if(score>=10000)

    }

    {

        printf("白金玩家");    

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

    }

    {

        printf("青铜玩家");     

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

    }

    else

    

        printf("普通玩家");    

    

    return 0;


写回答 关注

4回答

  • 慕粉1245815
    2019-11-28 00:54:57
    已采纳

    #include <stdio.h>

    int main() 

    {

        int score = 7200;

        //完善一下代码

        if(score>=10000)

        {

            printf("钻石玩家");

        }

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

        {

            printf("白金玩家");    

        }

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

        {

            printf("青铜玩家");     

        }

      else

        {

            printf("普通玩家");    

        }

        return 0;

    }


  • 慕粉1245815
    2019-11-28 00:54:15

    {}这个放错地方了,代码是对的,结构错了

  • 慕容3570686
    2019-11-25 16:57:13

    怎么没有if



  • 慕后端5180052
    2019-11-25 12:49:47

    多重if语句前面以及判断了不大于10000

    后面自然就不需要表示小于10000了 以此类推

C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题