单项选择题

下列程序的输出结果是( )。  public class fff{  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.printValue(i);  }  }

A.8
B.9
C.10
D.11