I'm probably going to sound so dumb, but I'm in a VB class in college and I am supposed to be doing a program with a loop and I can't for the life of me figure out how to do that. Any suggestions would be great. Thanks
: I'm probably going to sound so dumb, but I'm in a VB class in college and I am supposed to be doing a program with a loop and I can't for the life of me figure out how to do that. Any suggestions would be great. : Thanks : The loop statement is one of the building stones of all programming languages... Here's an example that will run on all basic versions, (you'll maybe have to add some line numbers to make it work on some old one's) [code] do a=a+1 loop until a>100 [/code]
Comments
: Thanks
:
The loop statement is one of the building stones of all programming languages...
Here's an example that will run on all basic versions, (you'll maybe have to add some line numbers to make it work on some old one's)
[code]
do
a=a+1
loop until a>100
[/code]