Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started