慕容6533398
2019-11-01 10:58
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(seore >= 10000)
{
printf("钻石玩家");
}
else if(seore>=5000)
{
printf("白金玩家");
}
else if(seore>=1000)
{
printf("青铜玩家");
}
else
{
printf("普通玩家");
}
return 0;
}
hhhhhh好可爱
常量名打错了是 score 不是seore
条件少了
C语言入门
926021 学习 · 20793 问题
相似问题