Main method
Use it with the following main method:
int[] numbers = new int[5];
Scanner sc = new Scanner(System.in);
int index = 0;
System.out.println("Input in the first number: ");
while (sc.hasNextInt()) {
int number = sc.nextInt();
if (index >= numbers.length) {
resizeArray(numbers);
numbers =
}
numbers[index] = number;
index++;System.out.println("Input in the next number: ");
}