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

请问这个代码错在哪里

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

    {

        printf("普通玩家");    

    }

    return 0;

}


正在回答

1 回答

 if(score>=10000);

else if();


if,elseif,后边不要带 “;”

另外 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;
}


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

冰之哀伤 提问者

非常感谢!可以另外问一下,为什么不加吗
2016-08-02 回复 有任何疑惑可以回复我~
#2

冰之哀伤 提问者

是固定的规律吗?
2016-08-02 回复 有任何疑惑可以回复我~
#3

赵震宇3802119 回复 冰之哀伤 提问者

是的,前面有讲过。
2016-08-10 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

请问这个代码错在哪里

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