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

程序输出错误


哪里不对呢,,就是没法通过。。。

提问者:Reylcn 2016-10-28 20:34

个回答

  • 里夫里夫0
    2016-10-29 15:11:11
    已采纳

    #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("%s\n","青铜玩家");     

        }

        else if (score<1000)

        {

            printf("%s\n","普通玩家");    

        }

        return 0;

    }


  • 慕虎5527523
    2016-10-28 20:52:15

    最后一个else 后面不加判断,你试试