为了账号安全,请及时绑定邮箱和手机立即绑定

为什么提示输入白金玩家错误

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    

    if(score>=10000)

    {

        printf("钻石玩家");

    }

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

    {

        printf("白金玩家");    

    }

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

    {

        printf("青铜玩家");     

    }

    else(score<1000)

    {

        printf("普通玩家");    

    }

    return 0;

}


正在回答

2 回答

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    

    if(score>=10000)

    {

        printf("钻石玩家");

    }

    else if(score>=5000&&score<10000)        //注意差别

    {

        printf("白金玩家");    

    }

    else if(score<5000&&score>=1000)         //注意差别

    {

        printf("青铜玩家");     

    }

    else(score<1000)

    {

        printf("普通玩家");    

    }

    return 0;

}


0 回复 有任何疑惑可以回复我~

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

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


不应该这样吗,你第一个要他小于5000分又要他小于10000分,第二个你要他大于5000分又要他大于1000

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么提示输入白金玩家错误

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信