Java for loops is very similar to Java while loops in that it continues to process a block of code until a statement becomes false, and everything is defined in a single line.
Syntax:
Example:
public class Sample {
public static void main(String args[]) {
/* local variable Initialization */
int n = 1, times = 5;
/* for loops execution */
for (n = 1; n <= times; n = n + 1) {
System.out.println("Java for loops:" + n);
}
}
}
Program Output:
No comments:
Post a Comment