改200怎么就不行了
#include <stdio.h>
int main()?
{
? ? int score = 200;
? ? //完善一下代碼
? ? if(score >=10000)
? ? {
? ? ? ? printf("鉆石玩家");
? ? }
? else ?if(score >=5000&&score <10000)
? ? {
? ? ? ? printf("白金玩家"); ? ?
? ? }
?else if(score >=1000&&score <5000)
? ? {
? ? ? ? printf("青銅玩家"); ? ??
? ? }
?else?
? ? {
? ? ? ? printf("普通玩家"); ? ?
? ? }
? ? return 0;
}
hello.c 請檢查輸出是否包含:白金玩家,再試試!直接進入下一節
2017-11-28
這段代碼在C語言軟件上是可以通過的,但是慕課網的提交平臺是一個對比結果的平臺,是不能運行的,需要在別的C軟件運行。