if statement with variable logic operators : if statement « Operators statements « C++ Tutorial






#include <iostream> 
using namespace std; 
  
int main() {  
  int a, b, c;  
  
  a = 2;  
  b = 3;  
  
  if(a < b) 
     cout << "a is less than b\n"; 
 
  if(a == b) 
     cout << "you won't see this\n";  
 
  cout << "\n"; 
 
  c = a - b;
 
  cout << "c contains -1\n"; 
  if(c >= 0) 
     cout << "c is non-negative\n"; 
  if(c < 0) 
     cout << "c is negative\n"; 
 
  cout << "\n"; 
 
  c = b - a; // c now contains 1 
  cout << "c contains 1\n"; 
  if(c >= 0) 
     cout << "c is non-negative\n"; 
  if(c < 0) 
     cout << "c is negative\n"; 
 
  return 0; 
}
a is less than b

c contains -1
c is negative

c contains 1
c is non-negative








3.13.if statement
3.13.1.if statement with variable logic operators
3.13.2.if with else
3.13.3.A nested if tatement
3.13.4.Proper use of braces with an if statement
3.13.5.A block of code in if statement
3.13.6.If statement with else
3.13.7.Use an int value to control the if
3.13.8.If else statement with block code
3.13.9.An if-else-if ladder.