为了账号安全,请及时绑定邮箱和手机立即绑定

当在写解集1>x>2时,在c语中能不能写为x>1,x<2


当在写解集1>x>2时,在c语中能不能写为x>1,x<2

正在回答

3 回答

那你得用计算机语言的&& 不然你这个就是错误代码

0 回复 有任何疑惑可以回复我~

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score >= 10000)

    {

        printf("钻石玩家");

    }

    else if(5000 <= score < 10000)

    {

        printf("白金玩家");    

    }

    else if(1000 <= score < 5000)

    {

        printf("青铜玩家");     

    }

    else

    {

        printf("普通玩家");    

    }

    return 0;

}

你可以写成1<x<2  这种形式

0 回复 有任何疑惑可以回复我~

不能,只能写成x>1&&x<2,其中&&表示且的意思

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

当在写解集1>x>2时,在c语中能不能写为x>1,x<2

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信