问答详情
源自:4-3 分支结构之多重if-else语句

这两个有什么区别吗?

#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;

}

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score>=10000)

    {

        printf("钻石玩家");

    }

    else if(score>=5000)

    {

        printf("白金玩家");    

    }

    else if(score>=1000)

    {

        printf("青铜玩家");     

    }

    else

    {

        printf("普通玩家");    

    }

    return 0;

}



提问者:慕数据9287510 2021-04-23 09:31

个回答

  • qq_慕虎9294303
    2021-04-25 15:03:03

    &&是且的意思,比如score>=5000&&score<10000,score>=5000,第一个是5000到10000是白金玩家,第二个是大于5000是白金玩家,可当大于1w的时候第二个代码会直接判定为钻石玩家。

    加上&&你可以从青铜玩家开始写,可以避免当score>10000的时候直接输出青铜玩家