Question: write a java program that writes the reverse order of numbers given to it. Write a program that reads in 8 positive integers, e.g. 73
write a java program that writes the reverse order of numbers given to it.

Write a program that reads in 8 positive integers, e.g. 73 95 61 21 90 85 14 78 into an array. The program then prints the values in reverse order as well as the average (to one decimal place). For example, Please enter 8 positive integers: 73 95 61 21 90 85 14 7 The values in reverse order are 78 14 85 90 21 61 95 73 The average is 517/8 64.6 You must use a function a function for computing the reverse, passing the array as an argument. Thus the function header will be similar to void reverse(int A)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
