Write a program in BASIC–256 to create reverse series from 50 to 1
Answers
Answered by
1
Language:
BASIC-256
Program:
for i =50 to 1 step -1
print i
next i
Output:
50
49
.
.
.
1
Explanation:
- Runs a loop with a step of -1
Attachments:
Similar questions