// ForExample.java – Demonstrates the for loop
class ForExample {
public static void main(String[] args) {
for (int n = 0; n < 5; n++) {
System.out.println(" n = " + n);
}
}
}
// ForExample.java – Demonstrates the for loop
class ForExample {
public static void main(String[] args) {
for (int n = 0; n < 5; n++) {
System.out.println(" n = " + n);
}
}
}