Write a program that takes in an integer in the range 20-98 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical
In Coral Language
3.22 LAB: Loops: Countdown until matching digits
Write a program that takes in an integer in the range 20-98 as input. The output is a countdown starting from the integer, and stopping when both output digits are identical.
Ex: If the input is:
93the output is:
93 92 91 90 89 88Ex: If the input is:
77the output is:
77Ex: If the input is:
9or any number not between 20 and 98 (inclusive), the output is:
Input must be 20-98For 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 if-else for all possible same-digit numbers (11, 22, 33, …, 88), as that approach would be cumbersome for large ranges.
![20:39 Mon Dec 20
43%
Wk 4: Apply: Labs [due Day 7]
= zyBooks
My library > PRG/211: Algorithms And Logic For C. >
3.22: LAB: Loops: Countdown until matching digits
E zyBooks catalog
? Help/FAQ 8 John Tolentino
VVOUIU N T LUITIDTI SUITIE TUI Taiyo Tanyes.
371120.2321490.qx3zqy7
LAB
3.22.1: LAB: Loops: Countdown until matching digits
0/ 10
АCTIVITY
Load default template...
1 integer x
Variables
2
3 x = Get next input
Not shown when editing
4
5 if x >= 20 and x <=98
Put x to output
to output
7
Put
Input
%3D
8.
X = X
1
9
10
11
12
Output
13
14
15
Code
Flowchart
Execution speed
ENTER EXECUTION
STEF
RUN
Medium O
Submit for grading
Signature of your work
What is this?
12/14.. T---|0-
W-- M-- ..12/20](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2F2cdea7ac-6341-45ea-969c-5f4d64dc8afb%2Fde96bb47-93d3-4896-b659-906d930f8ab6%2Fxcan16k_processed.png&w=3840&q=75)

Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images

I'm getting an error that says unknown token near: ! = x%10.
What's wrong with code?








