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

这个有错吗?怎么老是说我没输出白金玩家

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

}


正在回答

4 回答

else (score < 1000)这一行else后面不用加判断语句了,不能这样写。

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

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

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

#include <stdio.h>

int main() 

{

    int score = 100;

    //完善一下代码

    if(score >=10000)

    {

        printf("钻石玩家");

    }

    else if(score >= 5000 ) //您用 &&加后面的语句其实是多此一举,

    {

        printf("白金玩家");    

    }

    else if (score >= 1000) 

    {

        printf("青铜玩家");     

    }

    else

    

        printf("普通玩家");    

    

    return 0;

}


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

举报

0/150
提交
取消

这个有错吗?怎么老是说我没输出白金玩家

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