C++ Comparison Operator Less Than Operator

Description

C++ Comparison Operator Less Than Operator

#include <iostream> 
  
using namespace std; 
  
int main(int argc, char *argv [])
{ 
        cout << "Enter your first number: " << endl; 
        int number1 = 0; 
        cin >> number1; //from   www.  java2  s  .c o m
  
        cout << "Enter your second number: " << endl; 
        int number2 = 0; 
        cin >> number2; 
  
        bool result = number1 < number2; 
        cout << "It is " 
                << result 
                << " that your first number is less than your second." 
                << endl; 
  
       return 0; 
}



PreviousNext

Related