Question: Write a program that prompts the user to enter an integer number n, and outputs the terms of a sequence defined by the division of
Write a program that prompts the user to enter an integer number n, and outputs the terms of a sequence defined by the division of n by 3 until the quotient is equal to zero. For instance, if the user enters n = 27, the programs should output the following terms:
27/3 = 9
9/3 = 3
3/3 = 1
1/3 = 0
Hint: use do-while loop
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
