在for循环中可以有任何类型的条件和任何类型的增量语句。
下面的示例仅打印0到10之间的偶数值:
for(int x=0; x<=10; x=x+2) { System.out.println(x); } /* 0 2 4 6 8 10 */
当开始和结束条件确定时,for循环是最好的。
0