How would I design a For loop that displays the following set of 10, 20, 30, 40, 50,. 1,000?
![]() |
How would I design a For loop that displays the following set of 10, 20, 30, 40, 50,. 1,000?
Depends on the language probably looks something like this:
For I = 10 to 1000 Step 10
Prnt I
Next I
All times are GMT -7. The time now is 02:38 PM. |