慕的地3981732
2015-05-27 17:34
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if (score>=10000)
{
printf("%s\n",钻石玩家");
}
else if(score>=5000&&score<10000)
{
printf("%s\n","白金玩家");
}
else if(score>=1000&&score<5000)
{
printf("%s\n","青铜玩家");
}
else if(score<1000)
{
printf("%s\n","普通玩家");
}
return 0;
}
不知道哪错了
第8行 printf("%s\n",钻石玩家");这里引号缺了半边,加上就好了。
printf("%s\n","钻石玩家");
C语言入门
926286 学习 · 20799 问题
相似问题