单选题

请问执行完以下代码后,输出结果为?

tot = 0

for n in range(3, 66 + 1):

    if n % 2 == 0:

        continue

    if n % 10 == 9:

        break

    tot += n

print(tot)

A

18

B

33

C

2208

D

15

赣ICP备20007335号-2