Log in

View Full Version : For loop


andyhaus1057
Aug 6, 2009, 03:10 PM
How would I design a For loop that displays the following set of 10, 20, 30, 40, 50,. 1,000?

ScottGem
Aug 6, 2009, 03:42 PM
Depends on the language probably looks something like this:

For I = 10 to 1000 Step 10
Prnt I
Next I