While Loop

int count = 0;
while (count < 5) {
  System.out.print(count);
  count++;
}
// Outputs: 01234
Comments