Asked by shabna

Algorithm to print all even numbers below hundred in the descending order

Answers

Answered by Steve
for i = 100 to 0 step -2 ; print i;

assuming you don't want to go on forever with the negative ones ...
Answered by Anagha
Algorithm to print all even numbers below 100 in the descending order.
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions