建立数组,预设前两项,定义数组构成 摘要:解题思路:建立数组,预设前两项,定义数组的构成。注意事项:输出第k位数,对应的索引是k-1。参考代码:#include<iostream>using namespace std;int main(){…… 题解列表 2024年12月02日 0 点赞 0 评论 82 浏览 评分:0.0
DP入门 # 2809: 菲波那契数列 摘要:``` // 注意这道题第一下项的下标为0,所以我们最后输出的是dp[n-1] #include #include #include #include using namespace …… 题解列表 2024年10月25日 0 点赞 0 评论 76 浏览 评分:0.0
编写题解 2809: 菲波那契数列 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a[1000],k;cin>>k;a[0]=1;a[1…… 题解列表 2024年05月12日 0 点赞 0 评论 94 浏览 评分:0.0
Yu:2809斐波那契数列 摘要:#### 解题思路: 数列:1 1 2 3 5 8 13 我们分别用a,b代表第一个值和第二个值。不断更新这两个值就可以。 在更新这两个值时,我们会先更新第一个值,而第二个值会受到第…… 题解列表 2023年12月07日 0 点赞 0 评论 234 浏览 评分:9.9
菲波那契数列 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int f[100]={0,1};int main(){ int n; cin>>n…… 题解列表 2023年12月05日 0 点赞 0 评论 159 浏览 评分:7.0
编写题解 2809: 菲波那契数列 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ int k,b=1,c=1,s=0; cin>>k; for(int i…… 题解列表 2023年12月05日 0 点赞 0 评论 59 浏览 评分:0.0
2809: 菲波那契数列 摘要:``` #include using namespace std; int main(){ int k,a=1,b=1,c=a+b; cin>>k; if (k …… 题解列表 2023年11月05日 0 点赞 0 评论 298 浏览 评分:9.9
菲波那契数列 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int k, a = 1, b = 1, c = 1; …… 题解列表 2023年07月12日 0 点赞 0 评论 251 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int k, a = 1, b = 1, c = 1; …… 题解列表 2023年07月09日 0 点赞 0 评论 108 浏览 评分:2.0
2809: 菲波那契数列 使用数组解决问题 摘要:解题思路:定义一个数组,并给数组的前两位赋值为1,使用for循环来计算第k位的数字大小参考代码:#include <iostream> using namespace std; int main(…… 题解列表 2023年04月11日 0 点赞 0 评论 182 浏览 评分:9.9