C_Bridge
2019-09-27 23:52
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
{
if(score>=10000)
printf("钻石玩家");
}
{else if(score>=5000&&score<10000)
printf("白金玩家");
}
{else if(score>=1000&&score<5000)
printf("青铜玩家");
}
{else(score<1000)
printf("普通玩家");
}
return 0;
}
{}的位置错了 {}应该在if后面 而不是把if语句括起来了
C语言入门
926288 学习 · 20799 问题
相似问题