请各位看看哪里错了,谢谢

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

慕先生5415820

2019-10-22 20:06

#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回答

  • 吾与卿
    2019-11-22 19:51:25

    你把&&和后面的删掉试试  最后的else后面不用写东西

  • wo还不够格
    2019-10-23 17:26:45

    else(

        {

            printf("普通玩家");  

    或者

    else if(score<1000)

        {

            printf("普通玩家");  


  • 叫Aaron
    2019-10-22 20:30:04

    将最后else下的{}删除

    正确代码如下

    #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
            printf("普通玩家");
        return 0;
    }

  • 慕函数8177550
    2019-10-22 20:28:39

    else(score<1000)这个直接写成else


C语言入门

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

926020 学习 · 20793 问题

查看课程

相似问题