幫忙看看哪里錯(cuò)了
#include <stdio.h>
int main()?
{
? ? int score = 7200;
? ? //完善一下代碼
? ? if(seore >= 10000)
? ? {
? ? ? ? printf("鉆石玩家");
? ? }
? ? else if(seore>=5000)
? ? {
? ? ? ? printf("白金玩家");? ??
? ? }
? ? else if(seore>=1000)
? ? {
? ? ? ? printf("青銅玩家");? ? ?
? ? }
? ? else
? ? {
? ? ? ? printf("普通玩家");? ??
? ? }
? ? return 0;
}
2019-11-16
hhhhhh好可愛(ài)
2019-11-04
常量名打錯(cuò)了是? score? 不是seore
2019-11-01
條件少了