填空题

以下do-while语句中循环体的执行次数是()
a=10;    
b=0;    
do { b+=2; a-=2+b; } while (a>=0);

【参考答案】

3