当执行以下程序时,输入 1234567890< 回车 > ,则其中 while 循环体将执行 【 7 】 次。
# include <stdio.h>
main( )
{ char ch;
w hile((ch=getchar( ))== '0') printf("#");
}