编写python代码, 请编写一个函数,输入参数整数t,返回斐 波那契数列中大于t的第一个数。 效果如下: 请输入一个整数;50 斐波那契数列中篇一个大于50的数为55
时间: 2024-02-11 13:08:36 浏览: 94
使用python求斐波那契数列中第n个数的值示例代码
5星 · 资源好评率100%
好的,这是您需要的 Python 代码:
```python
def fibonacci(t):
a, b = 0, 1
while b <= t:
a, b = b, a + b
return b
# 测试
t = int(input('请输入一个整数:'))
print(f'斐波那契数列中第一个大于{t}的数为{fibonacci(t)}')
```
输出结果:
```
请输入一个整数:50
斐波那契数列中第一个大于50的数为55
```
阅读全文