单项选择题

标有/* * /的语句的执行次数是______。 int y,i; for(i=0 ; i<20 ; i++) { if (i%2==0) continue; y+=i; /**/ }

A.20
B.19
C.10
D.9