摘要: def fib(n): a, b = 0, 1 for _ in range(n): a, b = b, a + b return a 阅读全文
posted @ 2024-01-29 17:38 Kazuma_124 阅读(8) 评论(0) 推荐(0) 编辑