单项选择题

下列程序的输出结果是______。
main ( )
int i;
for (i=l;i<6;i++)
if(i%2)printf("#");continue;
printf ("*");
printf("\n");

A.#*#*#
B.#####
C.*****
D.*#*#*