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

为什么最后的else后面不能加东西

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if( score>=10000)

    {

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

    }

    else if(score<10000)

    {

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

    }

    else if(score<5000)

    {

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

    }

    else

    {

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

    }

    return 0;

}


提问者:weixin_慕UI9486235 2020-09-03 19:14

个回答

  • weixin_慕桂英7489707
    2020-09-04 09:54:07

    if代表是如果的意思,else是否则的意思,else if  中的else是上一个if的结尾可以这样理解,所以else是结束了。