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



Expert's answer

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


	}
}
LATEST TUTORIALS
APPROVED BY CLIENTS