第10775题 判断
执行给定Python循环代码后是否会输出0-3-6-9-?
for i in range(10):
    if i % 3:
        continue
    print(i, end = "-")
A

正确

B

错误