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

为什么最后的else(score<1000)不能有(score<1000)这个条件

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

如果你要在后面加上最后一个表达式,必须要有if,否则语句到else时突然出现表达式,无法识别或者识别错误

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

那等于1000呢?

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

举报

0/150
提交
取消

为什么最后的else(score<1000)不能有(score<1000)这个条件

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