(0)
Write a program to print all natural numbers from 45 to 25 in
descending order (Using For-Next Loop).
Answers
Answered by
8
Answer:
CLS
FOR I=45 TO 25 STEP -1
PRINT I
NEXT I
END
Similar questions