|
Blue Forest http://www.lslnet.com at 8:28 on August 25, 2006
To master Experts who can talk about the details
Do [{While | Until} condition]
Loop
|
Do while. . . . Loop
[html]
"Script language=vbscript>
Dim i
Step for ≥ 1 to 33
Document.write i& "" School Official Cites Use "
Do while i=22
Exit for
Loop
Next
"/script>
[/html]
Do until. . . Loop
[html]
"Script language=vbscript>
Dim i
Step for ≥ 1 to 33
Document.write i& "" School Official Cites Use "
Do until i<22
Exit for
Loop
Next
"/script>
[/html]
Do until condition. . . Loop until the conditions are set up on the implementation of a code block.
Do while condition. . . When the loop is a piece of code enforcement has been established conditions. |
|