填空题

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

【参考答案】

0