第19679题 单选
以下C++for循环代码执行后的输出是?
for (int i = -2; i < 2; i++)
    if (i % 2)
        printf("%d#",i);
A

-1#1#

B

-1#0#1#

C

-2#-1#1#

D

-2#-1#1#2#