我不知道哪里錯(cuò)了~!大神教教我!
#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;
}
2018-10-30
最后一個(gè) else 少了if? 或者 把score<1000去掉