源自:4-3 分支结构之多重if-else语句
#include <stdio.h> int main() { int score = 7200; if("score>=10000") { printf("钻石玩家"); } else if("score>=5000") { printf("白金玩家"); } else if("score>=1000") { printf("青铜玩家"); } el
为什么输出错误?
提问者:慕九州0379430
2017-10-20 21:35
个回答
-
if(score>=10000)
{printf("钻石玩家");}
else if(score>=5000&&score<10000)
{printf("铂金玩家"):}
else if(score>=1000&&score<5000)
{printf("青铜玩家");}
else
{printf("普通玩家");}
你的分数范围错了当然输出错的,你只写下限 没写上限啊