Java while loops
Java while loops statement allows to repeatedly run the same block of code, until a condition is met.
while loop is most basic loop in Java. It has one control condition, and executes as long the condition is true. The condition of the loop is tested before the body of the loop is executed, hence it is called an entry-controlled loop.
The basic format of while loop statement is:
Syntax:
While (condition)
{
statement(s);
Incrementation;
}
Figure – Flowchart of while loop:
Example of a Java Program to Demonstrate while loop
Example:
public class Sample {
public static void main(String args[]) {
/* local variable Initialization */
int n = 1, times = 5;
/* while loops execution */
while (n <= times) {
System.out.println("Java while loops:" + n);
n++;
}
}
}
Program Output:
0 comments:
Post a Comment