Write a C++ program to read in two integers from the keyboard and make a selecti
ID: 3622066 • Letter: W
Question
Write a C++ program to read in two integers from the keyboard and make a selection from a menu to compute and display the sum, difference, product, quotient, or remainder of the two integers based on the choice selected.
Algorithm:
1) Display the menu (void function)
2) Enter the two integers (main function)
3) Select a value from menu - choice (return function)
4) Call function to calculate sum, difference, product, quotient, or remainder based on the choice entered. (return functions)
5) output results (void function)