Write a program that overloads functions. The program will determine the average
ID: 3624976 • Letter: W
Question
Write a program that overloads functions. The programwill determine the average of 3 integers and the average
of 3 doubles.
You should call a function to get user input for 3 integers
and another function to get user input for 3 doubles. The
functions should have the same return type (void) and the
same name: getNumbers.
Then create 2 overloaded functions to return the average.
Those functions should return a double and be named getAverage.
Then back in main display the averages.