|
Java Reference Home | Smart Soft Home |
|
|
while
CategoryLoopsDescriptionDefines a loop that repeats as long as some boolean expression (true/false question) remains true.Examplewhile(x<10) {
System.out.println("Do this as long as x is less than 10");
System.out.println("Do this as long as x is less than 10");
System.out.println("Do this as long as x is less than 10");
}
|
|