填空题

下列循环的循环次数是______。
int k=2;
while(k=0)
printf("%d",k);
k--;
printf("\n");

【参考答案】

0