以下程序段的输出结果是( )__。
int i; for(i = 1; i <= 5; i++) { if(i % 2) printf("#"); else continue; printf("*"); }
(A)###
(B)###*
(C)##*
(D)##
Copyright ©