下列循环语句中,循环次数是( ).int i=0 do { i+=1; } while (i

问题描述:

下列循环语句中,循环次数是( ).int i=0 do { i+=1; } while (i

用的是do while结构,先执行后判断,当i=5时,还会运行一次,所以循环5次