PDA

View Full Version : Do Until Loops


adastep
11-28-2006, 12:15 PM
I've got a project due tonight and I was asked to put a do until loop in my project. Well the only problem is that I don't no how to do that. Can somebody plz show me?

Chrono
11-28-2006, 07:56 PM
It would look like this in VB:

do until __________=_________
_____
_____
_____
loop

(a do until is the opposite of a do while)
__________________________________________________ _______________
In ALICE it would look like this:

Loop
If ______
Do Nothing
Else
Loop
____________