为什么这里else if(score>=5000&&score<10000)要把这行往前移动才能运行成功,如果和上一个if同一列就不可以运行?

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

慕标9124751

2020-09-09 20:24

#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
    {
        printf("普通玩家");   
    }
    return 0;
}

写回答 关注

1回答

  • Mint小狼
    2020-09-10 10:39:20

    #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

        {

            printf("普通玩家");    

        }

        return 0;

    }

    这样是能运行成功的 可能是网页识别有时候bug

C语言入门

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

926028 学习 · 20793 问题

查看课程

相似问题