单选题 下列循环语句中,循环体的执行次数是______
int i=0
do
{
i+=1;
}while(i<=4);
  • A.3
  • B.4
  • C.5
  • D.6
【正确答案】 C
【答案解析】[解析] do...while循环语句是先执行后判断,所以循环体执行次数为5次。