哪里出错了

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

asdfghjjhgfsha

2018-08-15 12:53

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

写回答 关注

2回答

  • 帅D
    2018-08-15 13:25:50
    已采纳

    括号错了,要英语的括号

    asdfgh...

    非常感谢!

    2018-08-15 17:09:12

    共 1 条回复 >

  • 慕粉1468323130
    2018-08-15 13:33:50

    else if (score>=5000&&score<10000)

     else if (score>=1000&&score<5000)

    这两行的括号是中文的括号。

C语言入门

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

926217 学习 · 20797 问题

查看课程

相似问题