Write a C++ program which input three numbers and display the largest number using ternary operator.

Program Code:
#include <iostream>

using namespace std;
int main()
{
int x, y, z;
int largest;
cout<<"Enter first number : ";
cin>>x;
cout<<endl;
cout<<"Enter second number : ";
cin>>y;
cout<<endl;
cout<<"Enter third number : ";
cin>>z;
cout<<endl;
largest = (x>y && x>z) ? x : (y>z) ? y : z;
cout<<"Largest number is "<<largest;
return 0;
}

The program code is tested on www.jdoodle.com
Output:
Enter first number : 5
Enter second number : 4
Enter third number : 7

Largest number is 7


Thanks
Mukesh Rajput
Mukesh Rajput

Mukesh Rajput

I am a Computer Engineer, a small amount of the programming tips as it’s my hobby, I love to travel and meet people so little about travel, a fashion lover and love to eat food, I am investing a good time to keep the body fit so little about fitness also..

Post A Comment:

0 comments: