在指定范围时应该使用逻辑与运算还是逻辑或运算

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

慕圣9128822

2021-03-03 02: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;

}

我用逻辑与和逻辑或都显示答案正确

写回答 关注

1回答

  • Arbitrary5
    2021-03-03 17:53:02

    与的话是不是有点多余了?if else如果符合就不往下执行了,所以与的情况你看看是不是去掉也可以

C语言入门

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

926023 学习 · 20793 问题

查看课程

相似问题