Java do-while循环示例 Java浮点数 Java增量无限循环 Java do-while循环示例 public class Test { public static void main(String args[]) { int x = 10; do { System.out.print("value of x : " + x ); x++; System.out.print("\n"); }while( x < 20 ); } } Java浮点数 Java增量无限循环