请问哪里错了呀,找了好久没找到错误

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

慕圣4569935

2019-09-04 20:14


#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

    {

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

    }

    return 0;

}


写回答 关注

2回答

  • 蝈蝈煮茶
    2019-09-09 19:09:09

    #include <stdio.h>
    int main()
    {
        int score = 7200;
        //完善一下代码
        if(score>=10000){
        printf("%s\n","钻石玩家");
        }
        else if(score>=5000&&score<10000){
            printf("%s\n","白金玩家");
        }
        else if(score>=1000&&score<5000){
            printf("%s\n","青铜玩家");
        }
         else{
             printf("%n\n","普通玩家");
         }
        return 0;

    }


    慕斯卡805...

    最后输出写错了,是%s

    2019-10-01 22:38:36

    共 1 条回复 >

  • 小小疾飞
    2019-09-04 20:26:05

    没错呀,我复制了你的代码运行,通过了。

C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题