In this tutorial you will learn about the C++ Programs to Find Greatest Number and its application with practical example.
C++ Program to Find the Greatest Number
In this tutorial, we will learn to create a C++ program that will Find Greatest Number using C++ programming.
Prerequisites
Before starting with this tutorial we assume that you are best aware of the following C++ programming topics:
- Operators in C++ Programming.
- Basic Input and Output function in C++ Programming.
- Basic C++ programming.
- Conditional statement in C++ programming.
Program to Find the Greatest Number
In c++ programming, it is possible to take multiple integer inputs from the user and Find the Greatest Number with the help of a very short program. The C++ language has many types of header libraries which has supported function in them with the help of these files the programming is easy. But today we will Find the Greatest Number from the taken numbers from the user using c++ programming.
Algorithm:-
With the help of this program, we can Find the Greatest Number.
1 2 3 4 5 6 7 8 9 |
1. Declaring the variables for the program. 2. Taking the input numbers. 3. Checking the greatest number. 4. Printing the greatest number. 5. End the program. |
Program to Find the Greatest Number:-
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 27 |
#include <iostream> using namespace std; int main() { //declaring the variables for the program. float no1, no2, no3; /* no1, no2, no3 will hold the values of three numbers from the user taken in the input */ //Taking the input from the user three numbers cout << "Enter three numbers for comparision: "; cin >> no1 >> no2 >> no3; if(no1 >= no2 && no1 >= no3) cout << "Largest number: " << no1; if(no2 >= no1 && no2 >= no3) cout << "Largest number: " << no2; if(no3 >= no1 && no3 >= no2) cout << "Largest number: " << no3; return 0; } |
Output:-
In the above program, we have first initialized the required variable.
- no1 = it will hold the integer value.
- no2 = it will hold the integer value.
- no3 = it will hold the integer value.
Input numbers for the program.
Program Logic Code.
Printing output for the greatest number.