问答详情
源自:4-3 分支结构之多重if-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 (score < 1000)

    {

        printf("普通玩家");    

    }

    return 0;

}


提问者:qq_慕丝6109828 2018-12-24 17:09

个回答

  • weixin_慕后端2252277
    2019-01-12 17:28:34

    #include <stdio.h>

    int main() 

    {

        int score = 7200;

        //完善一下代码

        if(score >= 10000)

        {

            printf("%s\n","钻石玩家");

        }

        else if(score >= 5000)

        {

            printf("%s\n","白金玩家");    

        }

        else if(score >= 1000)

        {

            printf("青铜玩家");     

        }

        else

        {

            printf("普通玩家");    

        }

        return 0;

    }


  • 慕小弟252528
    2019-01-03 16:50:15

    https://img4.mukewang.com/5c2dcca30001fa7a02090036.jpg,改为 else即可,后面去掉

  • 慕用7022031
    2018-12-25 21:13:18

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


    }


  • 素笺言心
    2018-12-24 20:28:34

    你前面都是else if,那你最后一个用else就不恰当,也应该改为else if

  • Oased_W
    2018-12-24 20:09:35

    错误在最后【else (score < 1000)】,要写条件需要if(/* condition */)。

    其实你的代码【if(score >= 10000){}else if(score >= 5000&&score < 10000)...】,  用else以后其实已经是满足score < 10000条件了,完全不用&&score < 10000了,直接else if(score >= 5000)即可,后面几个条件也是如此。

    希望对你有帮助~~~