单选题 下面程序的运行结果是(    )。
   main()
   {int y=10;
     do
     {y--;}while(--y);
     printf("/%d\n”,y--);
   }
   A.0    B.1    C.8 D.-1
【正确答案】 A
【答案解析】