第12671题 单选题
执行给定Python猜数字程序,输入3时的输出结果是?
number = 7
guess = -1
print('猜数字!')
while guess!= number:
    guess = int(input("请输入你要猜的数字"))
    if guess == number:
        print("你猜中了,真厉害!")
    elif guess < number:
        print("猜小了,再猜猜?")
    elif guess > number:
        print("猜大了,再猜猜?")
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析