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

In function 'main': error: expected ';' before '{' token

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score>=10000)

    {

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

    }

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

    {

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

    }

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

    {

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

    }

  else(score<1000)

    {

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

    }

    return 0;

}



正在回答

4 回答

else  后面跟的是执行语句  要么把(score<1000) 去掉  要么在 else 后面加多一个if

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

徐东根 提问者

非常感谢!
2015-09-10 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

In function 'main': error: expected ';' before '{' token

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