为什么老提示我无法输出白金玩家?到底哪里错了?

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

Emmamama

2016-02-19 14:14

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

}


写回答 关注

4回答

  • 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",这个没写

    Emmama...

    可以直接输出吧

    2016-02-21 15:03:18

    共 1 条回复 >

C语言入门

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

926027 学习 · 20793 问题

查看课程

相似问题