#2
厨师王德榜2022-06-13 15:26
|
num = int(input('输入一个任意大于1的整数:'))
i = 2
while i <num:
print(i)
i += 1
运行结果为以下
输入一个任意大于1的整数:50
输入50后怎么继续执行结果?