xunluzhe
2015-06-21 16:05
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score>=10000)
{
printf("钻石玩家");
}
else if(score>=5000&&sore<10000)
{
printf("白金玩家");
}
else if(score>=1000&&score<5000)
{
printf("青铜玩家");
}
else
{
printf("普通玩家");
}
return 0;
}
这样写为什么不可以
else if(score>=5000&&sore<10000) 这里单词写错了。尽量别犯这样的低级错误
分数可能为负数。
C语言入门
926206 学习 · 20797 问题
相似问题