blob: 615f6e8a3e43148c8d7f2733be306a6fbdab27da (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
public class ForLoop {
public static void main(String[] args) {
// before loop
for (int i = 0; i < 10; i++) {
// start of block
System.out.println(i);
// end of block
}
// after loop
}
}
|