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

if -else 语句

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score>=10000)

    {

        printf("钻石玩家");

    }

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

    {

        printf("白金玩家");    

    }

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

    {

        printf("青铜玩家");     

    }

  else

    {

        printf("普通玩家");    

    }

    return 0;

}

这样写为什么不可以

提问者:xunluzhe 2015-06-21 16:05

个回答

  • chavin
    2015-06-22 00:13:26
    已采纳

     else if(score>=5000&&sore<10000)   这里单词写错了。尽量别犯这样的低级错误

  • 丶小八戒
    2015-06-21 16:11:51

    分数可能为负数。