write a program in small basic to print from 1 to 20 using for loop
Answers
Answered by
1
Answer:
Explanation:
The loop condition is given as a range using the To keyword. The variable number is incremented until it reaches the end of the range given in the loop condition. The loop in this case runs 10 times. Once the loop reaches its end, we use the keyword End For to signal that the for loop will end
Similar questions