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

为什么错啊?头都大了。。。。。

#include <stdio.h>

int main() 


{

    int score=7200;

    

    if (score>=10000)

    {

        printf("钻石玩家");

        

    }

    else if(score>=5000)

    {  

        

        printf("白金玩家");

        

    }

    

    else if(socre>=1000)

    

    {

        printf("青铜玩家");

    

        

    }

    else

    {

        printf("普通玩家");

        

    }

    

    return 0;

}    


提问者:慕标9373483 2019-11-26 20:26

个回答

  • 坏笑_aichichuan666
    2019-11-28 15:05:16

    第二个是else if括号中的score,你写成socre了。

  • 慕妹3504112
    2019-11-26 22:30:29

    http://img4.mukewang.com/5ddd36ed0001eccf04080394.jpg

    参考答案