大佬们,哪里错了 我实在不知道了

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

慕斯8007384

2019-12-15 19:07

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

写回答 关注

4回答

  • qq_慕慕4421011
    2019-12-31 15:42:41

    最后一个else没有表达式,如果有就要加上if

  • Li_AngXin
    2019-12-20 17:59:37

    最后else(score<1000);   后面加个;就对的

    陆瑾言

    为什么要加;啊

    2020-02-27 09:16:57

    共 1 条回复 >

  • 云自苍梧去
    2019-12-17 11:24:59

    最后的else没有判断条件

  • 慕丝9513650
    2019-12-15 20:29:59

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

C语言入门

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

926021 学习 · 20793 问题

查看课程

相似问题