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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!