哪里出错了,谁给看下

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

慕容3501807

2018-08-11 11:44

#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>=1000&&score<5000)

    {

        printf("%s\n","青铜玩家");     

    }

    else(score<1000)

    {

        printf("%s\n","普通玩家");   

    }

    return 0;

}


写回答 关注

2回答

  • 修裾欲溯空
    2018-08-11 14:16:48
    已采纳

    else后面是不加条件的,除非你用的是else if

  • qq_就是那样_0
    2018-08-11 16:43:15

    else(score<1000)应用else if(score<1000)

C语言入门

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

926025 学习 · 20793 问题

查看课程

相似问题