问题详情

有以下程序

main()

{ int k=5;

while(--k) printf("%d",k -= 3);

printf("\n");

}

执行后的输出结果是

A)1

B)2

C)4

D) 死循环

参考答案
您可能感兴趣的试题