单选题 以下程序中,while循环的循环次数是 ( )。 main() { int i=0; while(i<10) { if(i<1) continue; if(I==5) break; i++; } ...... }
【正确答案】 D
【答案解析】