何錯只有???檢查不出來咋正啊
#include<stdio.h>
int main()
{
? ? int score=7200;
? ? if(score>=10000)
{ ? ?
? ? ? ? printf("%s\n","鉆石玩家");
}
? ? else if(score>=5000)
{ ? ?
? ? ? ? printf("%s\n","白金玩家");
}
? ? else if(score>=1000)
{ ? ?
? ? ? ? printf("%s\n","青銅玩家");
}
? ? else
{
? ? ? ? printf("%s\n","普通玩家");
}
? ? return 0
}
2015-01-28
#include<stdio.h>
int main()
{
? ? int score=7200;
? ? if(score>=10000)
{ ? ?
? ? ? ? printf("%s\n","鉆石玩家");
}
? ? else if(score>=5000)
{ ? ?
? ? ? ? printf("%s\n","白金玩家");
}
? ? else if(score>=1000)
{ ? ?
? ? ? ? printf("%s\n","青銅玩家");
}
? ? else
{
? ? ? ? printf("%s\n","普通玩家");
}
? ? return 0;
}
給你改好了 加粗下劃線部分