
LANGUAGE: JAVA
CHALLENGE:
printArray is a method that accepts one argument, an array of int s. The method prints the contents of the array; it does not return a value.
inventory is an array of int s that has been already declared and filled with values.
Write a statement that prints the contents of the array inventory by calling the method printArray.
SOLUTION:
printArray(inventory);
void printArray(int a[]) {
int i;
for (i = 0; i < a.length; i++){
System.out.print(a[i]);
System.out.println();
}
}