if -else 语句

来源:4-3 分支结构之多重if-else语句

xunluzhe

2015-06-21 16:05

#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;

}

这样写为什么不可以

写回答 关注

2回答

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

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

    xunluz...

    非常感谢!

    2015-07-13 13:30:11

    共 1 条回复 >

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

    分数可能为负数。

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926206 学习 · 20797 问题

查看课程

相似问题

If-else语句

回答 2

if-else语句

回答 1

if else语句

回答 1

if-else语句

回答 1

if else语句

回答 3