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

哪里有错误

int score = 7200;    】    if (score >=10000)    {        printf("钻石玩家");    }    else if (score >=5000 %% score< 10000)    {        printf("白金玩家");        }  else  if (score >=1000 %% score < 5000)    {        printf("青铜玩家");        }  else    {        printf("普通玩家");        } 则么会这样???

正在回答

4 回答

#include <stdio.h>
int main()
{
    int score = 5201314;
    //完善一下代码
    if (score>=100000)
    {
    printf("神级玩家");
    }
     else  if (score>=10000)
    {
        printf("钻石玩家");
    }
    else if (score>=5000)
    {
        printf("白金玩家");   
    }
    else if (score>=1000)
    {
        printf("青铜玩家");    
    }
    else  if (score<1000)
    {
        printf("普通玩家");   
    }
    return 0;
}

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

....打错了。。。

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

而且你的逻辑运算符还用错了,应该用&&的

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

不用用到那个逻辑运算符的

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

举报

0/150
提交
取消
C语言入门
  • 参与学习       926023    人
  • 解答问题       20793    个

C语言入门视频教程,带你进入编程世界的必修课-C语言

进入课程

哪里有错误

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