第25614题 判断题
判断“以下Python代码执行时会导致无限循环”这一表述是否正确
count = 0
while count < 5:
    count += 1
    if count == 3:
        continue
    print(count, end=' ')
A

正确

B

错误

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析