问答详情
源自:4-3 分支结构之多重if-else语句

为什么我这个怎么都输出不出来啊?

应该没有错误才对啊?错在哪了?

#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;

}


提问者:钟阿瞒i 2017-07-25 15:45

个回答

  • 慕瓜9143287
    2017-07-25 16:53:46

    else if后面不用分号

  • 慕斯卡8899460
    2017-07-25 16:47:45

    else if条件后边多加了分号