找不出错误,求帮忙

来源:4-3 分支结构之多重if-else语句

weixin_慕田峪5153994

2019-12-11 23:45

#include <stdio.h>
int main()
{
    int score = 7200;
   if(score>=10000) //完善一下代码
    {
        printf("%s\n","钻石玩家");
    }
    else if(score>=5000&&score<=10000)
    {
        printf("%s\n","白金玩家");   
    }
    else if(score>=1000&&score<=5000)
    {
        printf("%s\n","青铜玩家");    
    }
  else(score<1000)
    {
        printf("%s\n","普通玩家");   
    }
    return 0;
}

写回答 关注

1回答

  • 攻城狮小关
    2019-12-12 08:04:18
    已采纳

    score>=5000就行了,后面的是多余的,以此类推

    weixin...

    好哒,谢谢你

    2019-12-13 16:54:28

    共 1 条回复 >

C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题