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

我这个代码也没问题吧

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score>=10000)

    {

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

    }

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

    {

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

    }

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

    {

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

    }

    else 

    {

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

    }

    return 0;

}


提问者:shangyu5494 2016-01-25 15:04

个回答

  • 贾俊蕊
    2016-01-27 19:19:15

    正确啊。

  • SCscHero
    2016-01-25 16:50:59

    没问题

  • weixin_慕仔4592029
    2016-01-25 16:46:49

    是的不错