Respuesta :
Answer:
maxSum=findMax(numA,numB)+findMax(numY,numZ);
Explanation:
In the above statement, a function is used twice to calculate the maximum of 2 numbers passed as parameters of type double and returns the maximum value of type double as well. As the function is static, so, there is no need to make an object of the class in which the function is made. After finding the largest of both the pairs, the values are added and printed to console.
Answer:
maxSum = findMax(numA, numB); // first call of findMax
maxSum = maxSum + findMax(numY, numZ); // second call
Explanation:
