Program to find a greater number among three numbers in c++ and C with the flowchart.
Flowchart of a program to find a greater number among three numbers

Program to find greater number among three numbers in c++
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | #include<conio.h> #include<iostream> using namespace std; int main() { int x; int y; int z; cout <<"Put any three numbers: "; cin>>x; cin>>y; cin>>z; if(x>=y && x>=z) { cout<<"The Largest number is: "<<x; } if(y>=x && y>=z) { cout<<"The Largest number is: "<<y; } if(z>=x && z>=y) { cout<<"The Largest number is: "<<z; } return 0; } |
Output

Video Lecture
Program to find greater number among three numbers in C
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <stdio.h> int main() { double x, y, z; printf("Put three different numbers: "); scanf("%lf %lf %lf", &x, &y, &z); if( x>=y && x>=z ) printf("%.2f is the largest number.", x); if( y>=x && y>=z ) printf("%.2f is the largest number.", y); if( z>=x && z>=y ) printf("%.2f is the largest number.", z); return 0; } |
Output

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