Question: 4 . 2 5 LAB: Countdown until matching digits Write a program that takes in an integer in the range 1 1 - 1 0

4.25 LAB: Countdown until matching digits
Write a program that takes in an integer in the range 11-100 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical.
Ex: If the input is:
93
the output is:
93
92
91
90
89
88
Ex: If the input is:
11
the output is:
11
Ex: If the input is:
9
or any value not between 11 and 100(inclusive), the output is:
Input must be 11-100
Use a while loop. Compare the digits; do not write a large if-else for all possible same-digit numbers (11,22,33,...,99), as that approach would be cumbersome for larger ranges.
534794.2296336.qx3zqy7
LAB ACTIVITY
4.25.1: LAB: Countdown until matching digits

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!