为什么这样不能输出

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

Wait_Katarina

2018-10-18 17:49

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

写回答 关注

1回答

  • jmmoeg
    2018-10-18 18:09:04
    已采纳

     else if(score>=5000&&?????????此处少了点什么吧!<10000)

    Wait_K...

    哦哦哦,对的对的

    2018-10-19 18:57:42

    共 1 条回复 >

C语言入门

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

926021 学习 · 20793 问题

查看课程

相似问题