Question
Construct a C++ Program that reads in two integers and then outputs their sum, product, remainder and average. Create a void function to read in
Construct a C++ Program that reads in two integers and then outputs their sum, product, remainder and average. Create a void function to read in the two integers. Then create a function that determines the sum, a function that determines the product, a function that determines the remainder and a function that determines the average.The functions should be named as follows: void Inputnums(int, int) - this function will read in the two integers.
int S(int, int) - this function will determine the sum of the two integers.
int P(int, int) - this function will determine the product of the two integers.
int R(int, int) - this function will determine the remainder of the two integers
double A(int, int) - this function will determine the average of the two integer
Write explanatory comments on or next to each line of code.
A sample output of the program as follows:-
Enter the first number:- 20
Enter the second number:- 10
20 + 10 = 30
20 * 10 = 200
(20 + 10)/2 = 15
20 % 10 = 0
Thank you, in advanced
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started