为什么我在这里面else if((score>=5000)&&(score<10000))加了两个括号输出结果就没有了呢?

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

慕粉1469391664

2017-02-04 15:10

#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

    {

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

    }

    return 0;

}


写回答 关注

1回答

  • 佬司基
    2017-02-04 15:37:19

    运算符的优先顺序来说不需要添加括号,在多重if-else语句中当一个条件判断为真时,不向下执行其他的分支结构语句,所以直接向下判断即可

C语言入门

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

926028 学习 · 20793 问题

查看课程

相似问题