Answer to Question #311187 in C++ for Christine Traya

Question #311187

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



1
Expert's answer
2022-03-15T16:48:01-0400

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)
	{


	}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment