摘要: A 阿宁的柠檬 签到 #include<bits/stdc++.h> #define int long long using namespace std; int32_t main() { int a , b , n; cin >> a >> b >> n; cout << n << " " << 阅读全文
posted @ 2022-09-08 19:23 PHarr 阅读(25) 评论(0) 推荐(0) 编辑
摘要: # **6-1 递归法求Fibonacci数列第n项的值** 这道题就是写一个简单的递归函数即可 ```cpp int fun( int n ){ if( n == 1 || n == 2 ) return 1; return fun(n-1) + fun(n-2); } ``` # **6-2 分 阅读全文
posted @ 2022-09-08 00:19 PHarr 阅读(162) 评论(0) 推荐(0) 编辑