A.int s=36;while (s) ; --s ;B.int k=0;do { ++k ; } while (k>=0);C.for ( ; ; ) ;D.int i=100;while (1) { i=i%100+1 ; if (i>100) break ;} 查看完整描述