write a QBASIC program to print all the even numbers between 2 to 50 in the descending order.
Answers
Answered by
3
FOR x = 50 to 2 step -1
IF x MOD 2 = 0 THEN
PRINT x;
ENDIF
NEXT x
Similar questions
Science,
2 months ago
English,
2 months ago
Math,
2 months ago
Math,
6 months ago
Social Sciences,
6 months ago
Science,
11 months ago
Computer Science,
11 months ago
Science,
11 months ago