求告知哪错了

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

慕无忌8482198

2019-04-22 13: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;

}


写回答 关注

4回答

  • qq_慕桂英1196597
    2019-05-09 18:35:51

    去掉最后一个else后面的,

    中间可以不用&&

    第二排少打了一个括号


  • qq_慕桂英1196597
    2019-05-09 18:32:50

    去掉else,可以不用&&,

    else(score>=5000)

    ......

    else(score>=1000_

    ......

    else      //这里就结束了


  • 慕斯卡8311332
    2019-04-22 19:35:33

    else 后面不能跟条件 所以要加一个if

  • 慕丝8300633
    2019-04-22 15:38:40

    printf后面括号没写“%s\n”呀

C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题