Java for循环 Java while循环 Java do while循环 Java for循环 public class Test { public static void main(String args[]) { for(int x = 10; x < 20; x = x + 1) { System.out.print("value of x : " + x ); System.out.print("\n"); } } } Java while循环 Java do while循环