问答题

当执行以下程序时,输入1234567890,则其中while循环将执行 次。 #include int main (void) { char ch; while((ch=getchar())=='0') printf("#"); return 0; }

【参考答案】

{}