为什么最后一个执行代码用的是else if而不是else?

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

慕码人9127421

2020-01-24 13:38

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

   if (score>=10000) 

    {

        printf("钻石玩家");

    }

    else if (score>=5000)

    {

        printf("白金玩家");    

    }

    else if (score>=1000)

    {

        printf("青铜玩家");     

    }

    else if (score<1000)

    {

        printf("普通玩家");    

    }

    return 0;

}


写回答 关注

1回答

  • 李长萍
    2020-02-18 15:32:57

    也可以把else if(score<1000)替换为else

C语言入门

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

926020 学习 · 20793 问题

查看课程

相似问题