Write a C++ program to find the maximum number between two numbers by using if-else statement
Write a C++ program to find the maximum number between two numbers by using if-else statement
Flowchart of the if-else statement program to find the maximum number between two numbers
C++ Source Code to find the maximum number between two numbers and program must support the if-else statement
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #include<iostream> using namespace std; int main() { int x,y; cout<<"Enter 1st Number : "; cin>>x; cout<< "Enter 2nd Number : "; cin>>y; if(x>y) { cout<<x<<" is Greature than "<<y; } else { cout<<y<<" is greature than "<<x; } } |
Output
Enter 1st Number: 4
Enter 2nd Number: 6
6 is Greater than 4
SFT (Shamil’s Flow Table )
Are you interested to Read about SFT(Shamil’s Flow Table)?
C++ Exercise | If else Statement
- calculate the bill
- character is small, capital or a special character
- a number is even or odd
- 0 is a positive or negative number
- a positive and negative number
- Enter Range of numbers and replaced them
- a greater number among three numbers
- Armstrong Number
- ASCII code
- Find the Maximum value program in C++ (C Plus Plus).
- maximum number
- Maximum Number between two numbers
- Student Grade
- the number is divisible by 11 or 5 or not
- Triangle
- a triangle is an equilateral, isosceles or scalene
- Leap year
- character is an alphabet or not
- Grade Percentage
- character is an alphabet, digit, or special character
- character is an uppercase or lowercase.
- Weekdays
- a prime or composite number
- hours and minutes as AM or PM
- swap the values of two numbers
- update even to odd
- Profit Loss
- centimeter into meter and kilometer
- Triangle
- Salary
- Even odd with goto statement.
- area of the circle