Question: In basic C++ please. In this program, you will have to compute and print the quotient and the remainder of a division. The program requires

In basic C++ please.

In this program, you will have to compute and print the quotient and the remainder of a division.

The program requires to write and use a function called integerDivision. This function takes 3 integer arguments: the dividend, the divisor, and a third variable that will be used to store the remainder of the division. The function returns the result of the integer division.

For example, after the following function call

result = integerDivision(11, 5, rest); 

result must be equal to 2 and rest must be equal to 1.

In the main function, get two integers from standard input (dividend and divisor, in order), call integerDivision, and then print the result as:

 divided by  equals  with a rest of  

if the division has a reminder. If not, just print:

 divided by  equals 

No hard coding please.

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!