Write an application that reads three integers, adds all three together and computes an average of the three entries and computes any remainder of the integer division.
A remainder represents the modulus result of dividing an even by an odd number or vice versa. Display the output.
The output will look something like this:
Enter an integer score 3
Enter an integer score 6
Enter an integer score 4
The average of 3, 6, 4 is 4 with a remainder of 1
Press any key to continue . . .
or
Enter an integer score 3
Enter an integer score 6
Enter an integer score 9
The average of 3, 6, 9 is 6 with a remainder of 0
Press any key to continue . . .