云自苍梧去
2019-12-17 11:27
#include <stdio.h>int main() { int score = 7200; //完善一下代码 if(score>=10000) { printf("钻石玩家"); } else if(score>=5000) { printf("白金玩家"); } else if(score>1000) { printf("青铜玩家"); } else(score<1000) { printf("普通玩家"); } return 0;}
如果你要在后面加上最后一个表达式,必须要有if,否则语句到else时突然出现表达式,无法识别或者识别错误
那等于1000呢?
C语言入门
926027 学习 · 20793 问题
相似问题
回答 2