public class Test { public static void main(String args[]) { int x = 1; while( x < 10 ) { System.out.print("value of x : " + x ); x++; ...
確定! 回上一頁