C++ programming to find the two number how to related to each other is greater than or less than or equal?
This c++ language programming is free all type of errors like compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code only with the there output.
Find the relation of two numbers C++ programming language.
#include
using namespace std;
int main() {
int a, b;
//Input Frist Number
cout << “Please Enter the Frist number: “;
cin>>a;
//Outout Second Number
cout << “Please Enter the Second Number: “;
cin>>b;
//Two Number Realtion condtion according thier output
if (a < b) {
cout << a << ” is less then ” << b ;
cout << endl;
}
if (a <= b) {
cout << a << ” a is less then or equal to ” << b ;
cout << endl;
}
if (a = b) {
cout << a << ” is equal ” << b ;
cout << endl;
}
if (a >= b) {
cout << a << ” is grater then or equal to ” << b ;
cout << endl;
}
if (a > b) {
cout << a << ” is greater then ” << b ;
cout << endl;
}
return 0;
}
// —– End code —–
Please Enter the Frist number: 5
Please Enter the Second number: 5
5 is less than or equal to 5
5 is equal to 5
5 is greater than or equal to 5
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any dought about this c++ programming code or input & output please comment below
If you have other question about c++ programming send an email by contacting us form are given on page right side.
Thank You!