Skip to content

While Loops

Sharina Stubbs edited this page Sep 17, 2019 · 3 revisions

Examples

While

int i = 0;
while (i < 7) {
  System.out.println("While loop: i = " + i);
}

Do-While

int i = 0;
do {
  System.out.println("Do-While loop: i = " + i++);
} while (i < 7);

Resources

Clone this wiki locally