易百教程

编写程序:在if语句中使用逻辑OR运算符

编写程序在if语句中使用逻辑OR运算符

当变量坐标值小于-5或大于5时,使用逻辑OR运算使条件成立。

提示
OR运算符是||

示例代码

#include <stdio.h>

int main()
{
    int coordinate;

    printf("输入目标坐标: ");
    scanf("%d",&coordinate);
    if( coordinate < -5 || coordinate > 5 )
    {
        puts("差不多接近了!");
    }
    else
    {
        puts("离目标差远了!");
    }
    return(0);
}

执行上面示例代码,得到以下结果:

hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
输入目标坐标: 6
差不多接近了!