equal b”;
if(a!=b) cout
cout << ”a is less than b”;if(a>b) cout << ”a is more than b”;
if(a<=b) cout << ”a is less or equal b”;
if(a>=b) cout << ”a is more or equal b”;
Условие – число: 0 – ложь, 1 - истина
if(x) cout << ”x is not equal 0”;
if(!x) cout << ”x equal 0”;
if(x=5) cout << ”warning! now x=5”;
if(x-y) cout << ”x is not equal y”;
Логические операции
! – «не» (операция отрицания)
&& - «и» (логическое уможение)
|| - «или» (логическое сложение)