下列程序段的输出结果为______。 public class Test{ void printValue(int m){ do {System.out.println("The value is "+m); } while(--m>10 ); } public static void main(String arg){ int i=10; Test t= new Test(); t.printV
主观题
下列程序段的输出结果为______。 public class Test{ void printValue(int m){ do {System.out.println("The value is "+m); } while(--m>10 ); } public static void main(String arg){ int i=10; Test t= new Test(); t.printV