鱼C论坛's Archiver
论坛
›
新手乐园
› python课后练习
yobdc
发表于 2021-8-29 20:16:42
python课后练习
x = 7 #设置未知数,总阶梯数
i= 1 #设置倍数
while True:
t = x * i
if t % 2 == 1 and t % 3 == 2 and t % 5 == 4 and t % 6 == 5 and t % 7 == 0:
print('台阶数为:',+ t)
break
else:
i += 1
if i >=1000:
print('无解')
页:
[1]
查看完整版本:
python课后练习