鱼C论坛

 找回密码
 立即注册
查看: 2254|回复: 2

[已解决]关于python课程中爱因斯坦问题的求助,我真的是超级小白

[复制链接]
发表于 2020-2-22 20:26:03 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
第六课时
爱因斯坦的难题
爱因斯坦曾出过这样一道有趣的数学题:有一个长阶梯,若每步上2阶,最后剩1阶;若每步上3阶,最后剩2阶;若每步上5阶,最后剩4阶;若每步上6阶,最后剩5阶;只有每步上7阶,最后刚好一阶也不剩。

以下是正确代码
x = 7
i = 1
flag = 0

while i <= 100:
    if (x%2 == 1) and (x%3 == 2) and (x%5 == 4) and (x%6==5):
        flag = 1
    else:
        x = 7 * (i+1) # 根据题意,x一定是7的整数倍,所以每次乘以7
    i += 1

if flag == 1:
    print('阶梯数是:', x)
else:
    print('在程序限定的范围内找不到答案!')


以下是我的代码,不知道为什么就是运行不了,快崩溃了,求大神解惑
whether=0
i=1
x=1
while i <= 100:
    if (7*i)%2 == 1 and (7*i)%3 == 2 and (7*i)%5 == 4 and (7*i)%6 == 5:
        x = 7*i
        whether = 1
    else:
        i = i+1
if whether == 1:
    print(x)
else:
    print('you can\'t find the answer')


最佳答案
2020-2-22 20:38:10
whether = 0
i = 1
x = 1
while i <= 100:
    if (7 * i) % 2 == 1 and (7 * i) % 3 == 2 and (7 * i) % 5 == 4 and (7 * i) % 6 == 5:
        x = 7 * i
        whether = 1
        print(x)
    i = i + 1
if whether == 0:
    print('you can\'t find the answer')

或者:
whether = 0
i = 1
x = 1
while i <= 100:
    if (7 * i) % 2 == 1 and (7 * i) % 3 == 2 and (7 * i) % 5 == 4 and (7 * i) % 6 == 5:
        x = 7 * i
        whether = 1
        break    # 跳出循环
    i = i + 1
if whether == 0:
    print('you can\'t find the answer')
else:
    print(x)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-2-22 20:38:10 | 显示全部楼层    本楼为最佳答案   
whether = 0
i = 1
x = 1
while i <= 100:
    if (7 * i) % 2 == 1 and (7 * i) % 3 == 2 and (7 * i) % 5 == 4 and (7 * i) % 6 == 5:
        x = 7 * i
        whether = 1
        print(x)
    i = i + 1
if whether == 0:
    print('you can\'t find the answer')

或者:
whether = 0
i = 1
x = 1
while i <= 100:
    if (7 * i) % 2 == 1 and (7 * i) % 3 == 2 and (7 * i) % 5 == 4 and (7 * i) % 6 == 5:
        x = 7 * i
        whether = 1
        break    # 跳出循环
    i = i + 1
if whether == 0:
    print('you can\'t find the answer')
else:
    print(x)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-2-22 21:00:13 | 显示全部楼层
非常感谢版主的解答!还有几个小问题想问一下
1.whether在这里是否是作为标杆来表示是否能够找到答案,如果能就是1,不能就是0,如果是这样的话能否用true 或者 false 来进行赋值?
2.我的代码之所以不能运行是否是因为没有使用break,也就是跳出循环,所以导致哪怕找到了答案也会继续进行循环?
最后再次感谢版主的回答,鱼c社区太温暖了,199没白充好吧!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 12:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表