Question: Write a program that can output the largest value and sum for a series of lines. The first line of input consist of two integers:
Write a program that can output the largest value and sum for a series of lines. The first line of input consist of two integers: the number of lines and the number of values on each line. Then the rest of the input will consist of floating point values (in the number of lines and number of values per line previously indicated). Be sure your formatting matches the test cases (round to the nearest hundredths). in c++
INPUT OF THE TEST CASE 1 3 4 1 2 3 4 5 7.845 7 -6.45 -0.004 45.9899 19 3 3 4 YOUR CODE'S OUTPUT 1 did not compile/run! 2 ----- THE CORRECT OUTPUT OF THE TEST CASE 1 Line 0: Max = 4.00; Sum = 10.00 Line 1: Max = 7.84; Sum = 13.39 3 Line 2: Max = 45.99; Sum = 67.99
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
