1//runs as long as the condition is true
2while(condition){
3//do what you want in here
4doStuff()
5}
1while(i < 5) //while i < 5 stay in the loop
2{
3 System.out.print(i);
4 i++;
5}
6/*
7 do someting
8 change variable
9 call methods
10 etc...
11*/