问答详情
源自: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

    {

        printf("普通玩家");    

    }

    return 0;

}


提问者:Emmamama 2016-02-19 14:14

个回答

  • forever_never
    2016-02-19 14:40:11
    已采纳

    我看不出毛病,按你的打了一遍,也没错,再试一下吧


  • 芥末辣椒酱
    2016-03-28 15:32:14

    我把else后面删除了就能行了,不知道为什么

  • hello佳明
    2016-03-05 11:43:08

     int score = 7200;

        //完善一下代码

        if(score>=10000)

        {

            printf("钻石玩家");

        }

        else if(10000>score>=5000)

        {

            printf("白金玩家");    

        }

        else if(5000>score>=1000)

        {

            printf("青铜玩家");     

        }

      else

        {

            printf("普通玩家");    

        }

        return 0;


  • qq_束栀_0
    2016-02-20 23:26:16

    你的"%s\n",这个没写