Write a program that prompts the user to input two POSITIVE numbers — a dividend (numerator) and a divisor (denominator). Your program should then divide the numerator by the denominator. Lastly, your program will add the quotient and the remainder together.

Sample Run:

Input the dividend: 10
Input the divisor: 4
The quotient + the remainder is 4.0



Answer :

Other Questions