一、题目
1.1 题目描述
大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。
n<=39
1.2 题目链接
- 《牛客网》:斐波那契数列
二、实现代码
public class Solution {
public int Fibonacci(int n) {
int pre = 0, cur = 1;
for(int i = 1; i < n; i++){
int temp = cur;
cur += pre;
pre = temp;
}
return n == 0 ? pre : cur;
}
}
来源:CSDN
作者:杨小帆_
链接:https://blog.csdn.net/qq_40697071/article/details/104118936