|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 qlm0216 于 2017-8-8 17:01 编辑
基础知识
1、not or and 的优先级是不同的:not > and > or
小甲鱼的实例:
not 1 or 0 and 1 or 3 and 4 or 5 and 6 or 7 and 8 and 9
相当于(not 1) or (0 and 1) or (3 and 4) or (5 and 6) or (7 and 8 and 9) == 0 or 0 or 4 or 6 or 9 ==4
2、爱因斯坦的难题
甲鱼的做法:
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 -----这里的算法比我做的要好得多,虽然循环到100,但却是到707之间的数
i += 1
if flag == 1:
print('阶梯数是:', x)
else:
print('在程序限定的范围内找不到答案!') |
评分
-
查看全部评分
|