初始化、条件、更新三段式——最常用的循环。
for(初始化; 布尔表达式; 更新) { //代码语句 }
for (int x = 10; x < 20; x = x + 1) { System.out.print("value of x : " + x); }