问答详情
源自:4-3 分支结构之多重if-else语句

最后一行有问题。求大师指点

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if( score >= 10000)

    {

        printf("钻石玩家");

    }

    else if(score >= 5000 )

    {

        printf("白金玩家");    

    }

    else if(score >= 1000 )

    {

        printf("青铜玩家");     

    }

    else(score < 1000)

    {

        printf("普通玩家");        、// 每次有这一步的时候错误。没有的话正常。求大佬们指点。

    }

    return 0;

}


提问者:慕圣0218751 2019-02-10 20:01

个回答

  • 慕移动4052444
    2019-03-15 11:12:02

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

        {

            printf("普通玩家");    

        }

        return 0;

    }


  • 慕沐0457867
    2019-03-12 11:41:40

            printf("青铜玩家");     

        }

        else(score < 1000)

        {

            printf("普通玩家");        、// 每次有这一步的时候错误。没有的话正常。求大佬们指点。

        }


        return 0;

    }

    下划线处我输入  if(score<1000) 执行也是正确的

  • 精慕门5720689
    2019-02-22 15:48:52

    else表示的是:上述所有条件都不满足才执行到else{..................................此处略去三万字,嘻嘻}里的代码!

  • 最最最帅的我
    2019-02-17 20:41:25

    else 后面什么都不用加了

  • Xiong丶
    2019-02-10 22:45:33

    这个else后面不能再加(score<1000)了,因为else已经包括了除了这个else以上所有score的取值范围(score<1000)了。