设有整型变量x,下述语句()不会出现死循环。


设有整型变量x,下述语句()不会出现死循环。

A.for(;;x+=1);

B.for(;(x=getchar())!='\n';);

C.while(1) {x++;}

D.for(x=10;;x--);

正确答案:B


Tag:变量 语句 整型 时间:2022-12-12 23:39:15