疯狂嵌套 呼呼
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score>=1000)
{
if(score>=5000){
if(score>=10000){
printf("钻石玩家");
}else{printf("白金玩家");}
}else{printf("青铜玩家");}
}else{ printf("普通玩家");}
return 0;
}