user5508330
0
Q:

java while

do {
	// loop content
} while (/* condition */);
6
int i = 0;
while (i < 5) {
  System.out.println(i);
  i++;
}
2
//runs as long as the condition is true
while(condition){
//do what you want in here
doStuff()
}
4
while(i < 5) //while i < 5 stay in the loop
{
  System.out.print(i);
  i++;
}
/*
	do someting
	change variable
    call methods
    etc...
*/
1
while (condition) {
  // code block to be executed
}
0

New to Communities?

Join the community