PART C. Write a program, ArrayRange, that asks the user to input integers and that displays the difference between the largest and the smallest. You should ask the user the number of integers s/he would like to enter (this will allow you to set the length of the array). Allow the user to input all the numbers and then store them in the array. Search the array for the largest number, then search for the smallest, and finally compute the calculation. Display all the numbers given by the user, the max number, the min number, and the difference. Sample Output: How many integers will you enter? 6 Enter 6 integers: 7 15 9 4 12 17 You entered: 7 15 9 4 12 17 Min: 4 Max: 17 Range: 13 (An example of finding the largest element can be found in the lecture slides. In principle, the same approach applies to finding the smallest.)
PART C. Write a
Sample Output: How many integers will you enter? 6 Enter 6 integers: 7 15 9 4 12 17 You entered: 7 15 9 4 12 17 Min: 4 Max: 17 Range: 13
(An example of finding the largest element can be found in the lecture slides. In principle, the same approach applies to finding the smallest.)
Trending now
This is a popular solution!
Step by step
Solved in 4 steps with 4 images