填空题

下列程序段的输出结果为 【10】
public class Test
void printValue(int m)
do
Systern.out,println("The value is "+m);

while(-m>10);

public static void main(String arg[])
int i=10;
Test t=new Test();
t.print Value(i);

【参考答案】

The value is 10