Question: write C program that reads three positive integers and prints out the minimum of the three integers entered and the sum of the cubes of
write C program that reads three positive integers and prints out the minimum of the three integers entered and the sum of the cubes of the numbers from 1 to the minimum. The program includes two functions, Minimum and Sum_Of_cubes. Minimum computes the minimum of the values passed to it. Sum_Of_cubes computes the sum of the cubes of the integers from 1 to the parameter passsed to it.
For example, if the input is 12, 3, and 5, your output should looks like : ------------------------------- Input three positive integer values: 12 3 5 The minimum of 12, 3, and 5 is 3. The sum of the cubes from 1 to 3 is 36. --------------------------------------------------------
Note that 1-cubed + 2-cubed + 3-cubed is 36.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
