Computer Science, asked by ravigamerz067, 2 months ago

(0)
Write a program to print all natural numbers from 45 to 25 in
descending order (Using For-Next Loop).​

Answers

Answered by BrainlyProgrammer
8

Answer:

CLS

FOR I=45 TO 25 STEP -1

PRINT I

NEXT I

END

Similar questions