为了账号安全,请及时绑定邮箱和手机立即绑定

哪错了?大哭!

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score >= 10000)

    {

        printf("%s\n","钻石玩家");

    }

    else if(socre >= 5000)

    {

        printf("%s\n","白金玩家");    

    }

    else if(socre >= 1000)

    {

        printf("%s\n","青铜玩家");     

    }

    else

    {

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

    }

    return 0;

}


正在回答

3 回答

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score >= 10000)

    {

        printf("%s\n","钻石玩家");

    }

    else if(socre >= 5000)//你有没有发现你的单词打错了

    {

        printf("%s\n","白金玩家");    

    }

    else if(socre >= 1000)//同上

    {

        printf("%s\n","青铜玩家");     

    }

    else

    {

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

    }

    return 0;

}


1 回复 有任何疑惑可以回复我~
#1

qq_GreenOrRed_0 提问者

非常感谢!
2016-04-26 回复 有任何疑惑可以回复我~

一楼正解,从第十行开始变量名打错了。是score,不是socre.

0 回复 有任何疑惑可以回复我~

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    

        if(score>=10000)

    {

        printf("钻石玩家");

    }

    

    else if(score>=5000&&score<=10000)  //题目说>=5000   <=10000 中间加个&& 下边都是

    {

        printf("白金玩家");

    }    

    else if(score>=1000&&score<=5000)

    {

        printf("青铜玩家");     

    }

    else

    {

        printf("普通玩家");    

    }

    return 0;

}

这是我写的   

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

哪错了?大哭!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信