-
Notifications
You must be signed in to change notification settings - Fork 1
While Loops
Sharina Stubbs edited this page Sep 17, 2019
·
3 revisions
int i = 0;
while (i < 7) {
System.out.println("While loop: i = " + i);
}
int i = 0;
do {
System.out.println("Do-While loop: i = " + i++);
} while (i < 7);
- A Guide to Java Loops - https://www.baeldung.com/java-loops
- Oracle docs - https://docs.oracle.com/javase/tutorial/java/nutsandbolts/while.html