选择题:[填空题,2分] 以下程序段中,do-while语句中中循环体的执行次数是(次 int a

题目内容:
[填空题,2分] 以下程序段中,do-while语句中中循环体的执行次数是(次
int a=6;int b=0;
do
{b+=2;
a-=2;}
while(a>=0);
参考答案: