Answers for "do loop"

8

do whie loop

do{
----
} while(condition);
Posted by: Guest on June-21-2020
1

vba do while

' OPTION 1
i =0
Do While i < 3 'Check Condition at the START of the loop
  ' Do something
  i = i + 1
Loop 

'OPTION 2
i =0
Do
  ' Do something
  i = i + 1
Loop While i < 3 'Check Condition at the END of the loop
Posted by: Guest on July-05-2020
0

do loop

do
{

    code to be executed;

}
while (condition is true);
Posted by: Guest on June-08-2021
0

do until vb.net

Dim z As Integer = 0
'Do the action until the condition is true

'add 1 to z until z equals 20
Do Until z = 20
	MsgBox(z)
	z += 1
Loop
Posted by: Guest on September-04-2020

Browse Popular Code Answers by Language