为什么会不正确呢?

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

舢美妞

2015-01-26 16:36

#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(score<1000)

    {

        printf("普通玩家");    

    }

    return 0;

}


写回答 关注

1回答

  • 温暖的骨头
    2015-01-26 16:48:44

    最后一个else,去掉小括号和里面的条件即可。


    前面的几个else if   ,最好只写score>=1000即可,不用写&&score<5000  举例。

C语言入门

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

926212 学习 · 20797 问题

查看课程

相似问题