编写程序在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
差不多接近了!