def fib(n): if n <5: return 1 return fib(n - 1) + fib(n - 4) print(fib(0)) print(fib(5)) print(fib(10)) print(fib(15))
回答于 2021-06-15 22:04