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

为什么我跑出来的是白金玩家普通玩家!!

#include <stdio.h>

int main()

{

int score = 7200;

if (score >= 10000)

{

printf("钻石玩家\n");

}

else if (score >= 5000)

{

printf("白金玩家\n");

}

else if (score >= 1000)

{

printf("青铜玩家\n");

}

else (score < 1000);

{

printf("普通玩家\n");

}


return 0;

}


正在回答

8 回答

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


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

六楼正解,else后内容删掉

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

http://img1.sycdn.imooc.com//5ee8ca1800018e7505120159.jpg

条件中包含并且,所以第一个 else if应该是else if(5000<=score<10000) 以此类推

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

http://img1.sycdn.imooc.com//5ee83fef00011da502280123.jpg

if后面写条件表达式,else后面不可以写条件表达式

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

 if(score>=10000)
    {
        printf("钻石玩家");
    }
    else if(10000>score&&score>=5000)
    {
        printf("白金玩家");   
    }
    else if(score>=1000&&score<5000)
    {
        printf("青铜玩家");    
    }
    else if(score<1000)
    {
        printf("普通玩家");   
    }

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;

}


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

else多写了个分号吗

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

你没限制他的上限 大于等于5000并且小于10000

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

举报

0/150
提交
取消

为什么我跑出来的是白金玩家普通玩家!!

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