问答详情
源自: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(score<1000);

    {

        printf("普通玩家");   

    }

    return 0;

}为什么最后的else语句后面需要加;,不加就会出现错误提示。

提问者:qq_s_47 2017-10-14 00:14

个回答

  • RenForRevenge
    2017-10-14 09:31:47
    已采纳

    else那里不需要判断条件啊 兄弟   if和else if判断后剩下的自然会给else   你加了条件就与上面if不是一起的了 else加了条件后你看输出是不是白金玩家普通玩家 加了条件后else就是自己单独的一个 当然要分号