Bucle do

Ejemplos de código

8
0

do whie loop

do{
----
} while(condition);
1
0

vba hacer mientras

' 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
0
0

¿hasta 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
0
0

bucle do


do
{

    code to be executed;

}
while (condition is true);

Páginas relacionadas

Páginas de ejemplo relacionadas

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................