这个代码哪里有问题呢?求高手解答

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

虞美_人

2016-01-30 15:41

#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;

}


写回答 关注

2回答

  • 虞美_人
    2016-01-30 15:57:09

    加上括号也不对呢

  • SilenceWaiter
    2016-01-30 15:50:13

    &&两边如果有算式,要先加括号,不然运算就混乱了

C语言入门

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

926028 学习 · 20793 问题

查看课程

相似问题