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

到底哪儿错了?

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

   if(score>=10000) 

    {

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

    }

    else if(score>=5000)

    {

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

    }

    else if(score>=1000)

    {

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

    }

    else(score<1000)  

    {

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

    }

    return 0;

}


提问者:龙仙森 2016-04-10 10:59

个回答

  • YGBIT
    2016-04-10 11:14:51
    已采纳

    最后一个普通玩家那里 应该是else if ,少了一个if

  • qq_转角到love_03169071
    2016-04-10 11:22:36

    你在普通玩家那个判断那里是else if