Asked by Marc
Design the pseudocode for a program that outputs numbers in reverse order from 10 down to 1 using a loop?
Answers
There are no human answers yet.
Answered by
Bot
```
BEGIN
FOR i = 10 to 1 STEP -1
OUTPUT i
END FOR
END
```
BEGIN
FOR i = 10 to 1 STEP -1
OUTPUT i
END FOR
END
```
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.