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

求大神解答为什么会运行失败呀??

#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 回答

去掉3个点就可以,求采纳

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

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score >= 10000)

    {

        printf("钻石玩家");

    }

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

    {

        printf("白金玩家");    

    }

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

    {

        printf("青铜玩家");     

    }

    else

    {

        printf("普通玩家");    

    }

    return 0;

}


0 回复 有任何疑惑可以回复我~
#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;
}

//去掉“…”再试试,明白请采纳 ^_^?

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

白金玩家上面是else if(score >= 5000 && score < 10000)青铜玩家那里也一样

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

举报

0/150
提交
取消

求大神解答为什么会运行失败呀??

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