Skip to content

Latest commit

 

History

History
38 lines (33 loc) · 262 Bytes

loop_while.md

File metadata and controls

38 lines (33 loc) · 262 Bytes

Loop while

Java - Android

int i = 0;
while ( i < 10 )
{
   i++;
}

Javascript

i = 0;
while ( i < 10 )
{
  i++;
}

Objective-C

int i = 0;
while ( i < 10 )
{
   i++;
}

PHP

$i = 0;
while ( $i < 10 )
{
   $i++;
}