Psychopath95xk
2015-12-11 12:30
#include <stdio.h>
int main()
{
int score = 9000;
//完善一下代码
if(score >= 10000)
{
printf("钻石玩家");
}
else if(score >= 5000)
{
printf("白金玩家");
}
else if(score >= 1000)
{
printf("青铜玩家");
}
else
{
printf("普通玩家");
}
return 0;
}
并不是你的问题,编译器出现了点错误,你用自己的编译器试试吧,
代码是正确的 在线编译器出问题 了
你这个没有问题,用你自己的编译器运行一下
这就对了,图给你
score 就不是变量了,然后怎么会有(score>1000)等等的语句
你已经定义了 score=9000
C语言入门
926025 学习 · 20793 问题
相似问题