这个代码所在的错误在哪里

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

慕妹1208976

2021-10-13 19:55

#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<5000&&score>=1000)
    {
        printf("%s\n","青铜玩家");     
    }
    else  
    {
        printf("%s\n","普通玩家");    
    }
    return 0;
}

写回答 关注

1回答

  • 慕仙7052714
    2021-10-13 21:14:24

    你的 if(score >=10000)中的括号好像是中文

C语言入门

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

926027 学习 · 20793 问题

查看课程

相似问题