哪位大神幫我看看,真的不知道哪有問題
#include<stdio.h>
int main()
{
? ? int score =7500;
? ? 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;
}
2020-02-24
白金玩家