3

单选题 3 /71

k为unsigned int类型,以下while循环执行次数为()
unsigned int k = 20;
while (k >= 0)
    --k;

参考答案

20次
一次也不执行
死循环
21次