None

运行下列代码,会打印出多少个数字?( )

for i in range(4):

    if i % 2 != 0:

        continue

    print(i)

A

0

B

1

C

2

D

3

赣ICP备20007335号-2