1131: C语言训练-斐波纳契数列 摘要:解题思路:注意事项:参考代码#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N=1e7+5;ll …… 题解列表 2024年04月13日 1 点赞 0 评论 153 浏览 评分:10.0
简单简单简单的1131 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ if(n==1||n==2) return 1; if(n>2) return f(n-1)+f(n-2);…… 题解列表 2024年11月27日 0 点赞 0 评论 303 浏览 评分:10.0
1131(C语言)最牛逼最简单的方法 摘要:#include <stdio.h>#include <string.h>int main(int argc, char *argv[]){ int n,i,m=1,j=0,k…… 题解列表 2025年02月10日 1 点赞 0 评论 300 浏览 评分:10.0