标签:dex 输出 nbsp public i++ 整数 斐波那契数 斐波那契数列 code
public int fibonacci(int n) {
int[] index = new int[50];
index[0] = 0;
index[1] = 1;
for (int i = 2; i <= n; i++) {
index[i] = index[i - 1] + index[i - 2];
}
return index[n];
}
大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。 n<=39
标签:dex 输出 nbsp public i++ 整数 斐波那契数 斐波那契数列 code
原文地址:https://www.cnblogs.com/0error0warning/p/12774422.html