Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Compare two numbers

C++ For Loop: Exercise-82 with Solution

Write a program in C++ to compare two numbers.

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;
 
int main()
{
int num1,num2;
    cout << "\n\n Compare the first number with second number numbers:\n";
	cout << "---------------------------------------------------------\n";
	cout << " Input the first integer: ";
	cin>> num1;
	cout << " Input the second integer: ";
	cin>> num2;	
	
		if ( num1 == num2 )           
            cout<< num1<< " == " << num2 <<endl;  
        if ( num1 != num2 )          
            cout<< num1<<" != " << num2<<endl; 
        if ( num1 < num2 )          
            cout<< num1<< " < "<<num2<<endl; 
        if ( num1 > num2 )          
            cout<< num1<<" > "<< num2 <<endl; 
        if ( num1 <= num2 )          
            cout<<num1<<" <= "<< num2<<endl; 
        if ( num1 >= num2 )          
            cout<<num1<< " >= "<< num2<<endl; 	
}

Sample Output:

 Compare the first number with second number numbers:                  
---------------------------------------------------------              
 Input the first integer: 25                                           
 Input the second integer: 15                                          
25 != 15                                                               
25 > 15                                                                
25 >= 15

Flowchart:

Flowchart: Compare two numbers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to convert a hexadecimal number to octal number.
Next: Write a program in C++ to compute the sum of the digits of an integer.

What is the difficulty level of this exercise?