Question: In C + + Code LAB 4 . 5 2 . 1 : LAB: Countdown until matching digits Write a program that takes in an
In C Code
LAB
: LAB: Countdown until matching digits
Write a program that takes in an integer in the range inclusive as input. The output of the program is a countdown starting from
the input integer until an integer where both digits are identical. End with a newline.
Ex: If the input is:
the output is:
quad
Ex: If the input is:
the output is:
Ex: If the input is:
or any value not between and inclusive the output is:
Input must be
For coding simplicity, follow each output number by a space, even the last one.
Use a while loop. Compare the digits; do not write a large ifelse for all possible samedigit numbers l as that
approach would be cumbersome for larger ranges.
main.cpp
#include
using namespace std;
int main
Type your code here.
return ;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
