不清楚问题在哪里

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

宝慕林6157259

2017-07-13 09:51

if(score>=10000)   
    {
        printf("钻石玩家");
    }
else if(score>=5000&&score<10000)   
    {
        printf("白金玩家");   
    }
else if(score>=1000&&score<5000)   
    {
        printf("青铜玩家");    
    }
else(score<1000) 
    {
        printf("普通玩家");   
    }

请问哪里有问题

写回答 关注

2回答

  • 小神很大
    2017-08-08 10:01:17

    最后那个else后面可以不加表达式了,如果要加是不是要写成else if()

  • 慕粉2032253821
    2017-07-13 10:42:37

    else if(score>=5000&&score<10000)  中不需要&&score<10000。else if 的意义就是score<10000。下面的类似的

    奇怪的阿怪

    可是我加了&&也没有问题,问题应该不是在这里

    2017-07-20 23:03:46

    共 1 条回复 >

C语言入门

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

926021 学习 · 20793 问题

查看课程

相似问题