Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
Write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. The input consists of five integers.Ex: If the input is 2 4 6 8 10, the
Write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. The input consists of five integers.
Ex: If the input is 2 4 6 8 10, the output is:
all evenEx: If the input is 1 3 5 7 9, the output is:
all oddEx: If the input is 1 2 3 4 5, the output is:
not all even or all oddYour program should define and use two functions:
Function countEvensInArray(integer array(?) userVals) returns integer numEvenFunction countOddsInArray(integer array(?) userVals) returns integer numOddcountEvensInArray should return 5 if all integers in the array are even. countOddsInArray should return 5 if all integers in the array are odd.