-->
当前位置:首页 > 题库

判断题:下列的while语句会陷入死循环。

Luz4年前 (2022-11-08)题库1257
下列的while语句会陷入死循环。

int a=0;
while(a)
{
a++;
}


答案:FALSE