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

为什么第17最后需要分号

#include <stdio.h>
int main()
{
    int score = 7200;
if(score >= 10000)
    {
        printf("钻石玩家");
    }
else if(score >= 5000 )
    {
        printf("白金玩家"); 
    }
else if(score >= 1000 )   
    {
        printf("青铜玩家");    
    }
else (score < 1000)  ;
    {
        printf("普通玩家");   
    }
    return 0;
}

正在回答

2 回答

#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)
{
    printf("%s\n" ,"青铜玩家");     
}
    else if(score <= 1000)
{
    puts("普通玩家");    
}
    return 0;
}


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

慕后端6363777

卡在这里不懂,谁能教教我,教程17行的代码是 else ,为什么过不去啊
2020-02-17 回复 有任何疑惑可以回复我~
#2

weixin_慕莱坞0307029 回复 慕后端6363777

直接else就可以了,后面if(.......)可以不要了
2020-02-23 回复 有任何疑惑可以回复我~

俺改好了


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

慕后端9506003

感觉不太对啊
2020-01-11 回复 有任何疑惑可以回复我~
#2

qq_慕仔1571511

倒数第六行条件不够
2020-02-12 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么第17最后需要分号

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