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

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


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

}


提问者:慕圣4569935 2019-09-04 20:14

个回答

  • 蝈蝈煮茶
    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;

    }


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

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