测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A60556. 以下程序运行后,会输出多少行内容?( )count = 0

单选题

题目描述

以下程序运行后,会输出多少行内容?(

count = 0 
while count < 8: 
    count += 1 
    if count % 3 == 0: 
       continue 
    if count == 6: 
       break 
    print(count)

选项(单选)