赞题库-背景图
单项选择题

执行下列Java语句,打印语句执行( )次。
int i = 1;
while (i < 10)
if ((i++) % 2 == 0)
System.out.println(i);
A、2
B、4
C、6
D、8