Find Greatest Number Program in C++

Advertisements

Armstrong Number in C++ Palindrome Number in C++

C++ program to Find Largest Number among three numbers

Using if Statements


#include<conio.h>
#include<iostream.h>

void main() 
{
clrscr();
int a, b, c;
cout <<"Enter any three numbers: ";
cin>>a;
cin>>b
cin>>c;
if(a>=b && a>=c) 
{
cout<<"Largest number: "<<a;
}
if(b>=a && b>=c) 
{
cout<<"Largest number: "<<b;
}
if(c>=a && c>=b) 
{
cout<<"Largest number: "<<c;
}
getch();
}

Output

Enter any three numbers:
15
30
20
Largest number: 30

Ternary operator

If any operator is used on three operands or variable is known as ternary operator. It can be represented with " ?: "

Ternary Operator

In the above symbol exp1 is condition and exp2 and exp3 will be either value or variable or statement or any mathematical expression. If condition will be true exp2 will be executer otherwise exp3 will be executed.

Using Ternary Operator


#include<iostream.h>
#include<conio.h>

void main()
 {
 int a,b,c,largest;
 clrscr();
 cout<<"Enter any three numbers: ";
 cin>>a>>b>>c;
 largest=(a>b)?(a>c?a:c):(b>c?b:c);
 cout<<"Largest number: "<<largest;
 getch();
}

Output

Enter any three numbers:
5
10
4
Largest number: 10

Armstrong Number in C++ Palindrome Number in C++

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements