7.11. (Part 2) Array Operations - Java

Опубликовано: 17 Сентябрь 2018
на канале: Kakra Detome
3,328
27

Starting out with Java: From control structures through objects
Chapter 7
Programming Challenges

11. Array operations

Write a program with an array that is initialized with test data. Use any primitive data type of your choice. The program should also have the following methods:

• getTotal. This method should accept a one-dimensional array as its argument and return the total of the values in the array.
• getAverage. This method should accept a one-dimensional array as its argument and return the average of the values in the array.
• getHighest. This method should accept a one-dimensional array as its argument and return the highest value in the array.
• getLowest. This method should accept a one-dimensional array as its argument and return the lowest value in the array.

Demonstrate each of the methods in the program.

Gaddis, Tony. Starting Out with Java: From Control Structures through Objects (Page 491). Pearson Education. Kindle Edition.

Thanks 😊