py倪琳2025-06-30 21:18:58发布于:新疆0阅读0回复0点赞def f(n): if n<=2: return 1 return f(n-1)+f(n-2) n=int(input()) print(f(n)) 有帮助,赞一个去预览0/2000发布这里空空如也
有帮助,赞一个