Hifipsysta-1180-不容易系列(C++代码)递归法 摘要:```cpp #include using namespace std; int a_(int n){ if(n==0){ return 3; } …… 题解列表 2022年02月05日 0 点赞 0 评论 188 浏览 评分:0.0
1180: 不容易系列(逆向思维求解) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int T; cin >> T; while (T--) { int…… 题解列表 2024年07月13日 0 点赞 0 评论 74 浏览 评分:0.0
不容易系列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<string> #include<algorithm> using na…… 题解列表 2019年04月09日 1 点赞 0 评论 322 浏览 评分:0.0
不容易系列(递推) 摘要:解题思路:递推注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;in…… 题解列表 2025年01月21日 0 点赞 0 评论 29 浏览 评分:0.0
不容易系列 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int N; cin>>N; int n; …… 题解列表 2018年05月13日 0 点赞 0 评论 515 浏览 评分:0.0
不容易系列-题解(C++代码)公差为2的等差数列 摘要:其实题目很简单,本质上就是求等差数列的某一项 通项公式为:An=A1+(n-1)*d ```cpp #include using namespace std; int main() { …… 题解列表 2019年12月12日 0 点赞 0 评论 646 浏览 评分:7.0
优质题解 不容易系列 递归求解 摘要:解题思路:本人在写时,发现可以用递归来写。什么是递归:(忙人请略过)程序调用自身的编程技巧称为递归。递归做为一种算法在程序设计语言中广泛应用。递归,就是在运行的过程中调用自己。 一个过程或函数在其定义…… 题解列表 2021年09月08日 0 点赞 0 评论 264 浏览 评分:9.9
1180: 不容易系列 摘要:```cpp #include using namespace std; int f(int n) { if(n==1) return 1; return…… 题解列表 2022年11月18日 0 点赞 0 评论 138 浏览 评分:9.9