#include <stdio.h> int main() { int score = 7200; if("score>=10000") { printf("钻石玩家"); } else if("score>=5000") { printf("白金玩家"); } else if("score>=1000") { printf("青铜玩家"); } el

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

慕九州0379430

2017-10-20 21:35

为什么输出错误?

写回答 关注

1回答

  • qq_慕工程1148236
    2019-06-09 22:40:07

    if(score>=10000)

    {printf("钻石玩家");}

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

    {printf("铂金玩家"):}

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

    {printf("青铜玩家");}

    else 

    {printf("普通玩家");}

    你的分数范围错了当然输出错的,你只写下限 没写上限啊


C语言入门

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

926025 学习 · 20793 问题

查看课程

相似问题