问答详情
源自:4-3 分支结构之多重if-else语句

哪里出错了

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

提问者:asdfghjjhgfsha 2018-08-15 12:53

个回答

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

    括号错了,要英语的括号

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

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

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

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