问答详情
源自:4-3 分支结构之多重if-else语句

我的代码哪里错了?运行结果是一串英文


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


提问者:天天xiangshang 2015-11-21 16:07

个回答

  • 顾玌
    2015-11-21 17:08:13
    已采纳

    你的score拼错了,白金玩家上面那个elseif里