Question: Write a program which takes a positive two digit integer as an input. The program should print out the digits one per line in order.
Write a program which takes a positive two digit integer as an input. The program should print out the digits one per line in order.
Hint: Integer division can give you one of the digits, modulus will be used to get the other.
Sample run:
Please enter a two digit number:
67
Here are the digits:
6
7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
