Question: Can you help me out with this please? it needs to be in the c++ language. Thank you. Division calculator. a) Request two integer values
Can you help me out with this please? it needs to be in the c++ language. Thank you.
Division calculator. a) Request two integer values for the numerator and denominator.
b) Use a validation loop to insure that denominator is not equal to 0.
c) Output the result of the following operations:
1) regular division
2) integer division
3) modulo division Output Example Enter an integer value for the numerator: 10
Enter an integer for the denominator: 0
0 is not a valid denominator. Enter an integer for the denominator: 3
1) regular division: 3.33333
2) integer division: 3
3) modulo division: 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
