Design a program that will ask the user to give three numbers and then the program will determine which of the three numbers has the highest in terms of numerical value using termary operator
// maximum.cpp
// Author: Mr jake R. pomperada, BSCS, MAED- IT
// Date: august 23, 2018 Thursday 10:55 pm
// Location: Bacolod City, Negros occidental
// Website: http://www.jakerpompereda.com
Here is program:
int main()
{
int a, b, c;
cin >> a;
cin >> b;
cin >> c;
if (a > b || b > a || a > c || b > c || c > a || c > b)
{
}
}
Comments
Leave a comment