Question: JAVA PROGRAMMING ArrayData Write two methods that read data from the console and store the data in an array: a. The method int readData(int] x)
JAVA PROGRAMMING
ArrayData Write two methods that read data from the console and store the data in an array: a. The method int readData(int] x) reads a list of at most 100 integers into the array x. A sentinel, -999, terminates the list. The method returns the size of the list. b. The method int] readData() reads and returns a reference to a list of integers. The list is preceded by the number of the items in the list. For example, the data 6 9 7 5 3 1 2 indicates that there are six items in the list. The leading 6 is not included in the list. Test both these methods within a single program that includes a method: void printList(int 0 x, int n) that displays x[0] through xin-1]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
