07 2018 档案

摘要:def fib(max): n = 0 a = 0 b = 1 while n < max: print(b) s = (b, a + b) a = s[0] b = s[1] n = n + 1 阅读全文
posted @ 2018-07-10 17:20 老僧观天下 阅读(134) 评论(0) 推荐(0) 编辑