作出决策之逻辑运算符(1)
/*1.逻辑运算符的使用。
2.逻辑表达式的使用。*/
#include<iostream>
usingnamespace std;
int main()
{
int x=5,y=0;
cout<<"x="<<x<<",y="<<y<<endl;
if(x>0&&y>0)//使用了运算符'与'=&&.
cout<<"x is greater than 0 and"
"y is greater than or equal to 0"<<endl;
if(x==0||y==0)//使用了运算符'且'==||.
cout<<"x equals 0 or y equals 0"<<endl;
if(!(x==y))//使用了运算符'非'=!.即"不是".
cout<<"x is not equal to y"<<endl;
return0;
}