单项选择题

以下程序的输出结果是_______。
main()
int i;
for(i=1;i<6;i++)
if(i%2)(printf("#");continue;
printf("*");

printf("\n");

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