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

为什么别人成功的都是最后一个只有else 不用if吗???

#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 if(score<1000)  

    {

        printf("普通玩家");    

    }

    return 0;

}


正在回答

3 回答

#include<stdio.h>
int main()
{
    int score = 7200;
    if(score >= 10000)
    {
        printf("钻石玩家");
    }
    else if(5000 <= score)
    {
        printf("白金玩家");
    }
    else if(1000 <= score)
    {
        printf("青铜玩家");
    }
    else
    {
        printf("普通玩家");
    }
    return 0;
   
}

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

慕尼黑8056883

为什么你这样输出的是: 白金玩家 普通玩家
2018-09-25 回复 有任何疑惑可以回复我~

首先,你不成功是因为把&&打成%%;其次,最后一个既可以用else,也能用else if

你应该这样改

else if(score>=1000%%score<5000) 改为else if(score>=1000&&score<5000)

else if(score>=5000%%score<10000) 改为else if(score>=5000&&score<10000)

然后就可以了。

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

首先,你不成功是因为把&&打成%%;其次,最后一个可以用else,也能用else if

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

举报

0/150
提交
取消

为什么别人成功的都是最后一个只有else 不用if吗???

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