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