题解 1180: 不容易系列

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

不容易系列 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> #include<string> #include<algorithm>  using na……

不容易系列(递推)

摘要:解题思路:递推注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;in……

不容易系列 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int N; cin>>N; int n; ……
优质题解

不容易系列 递归求解

摘要:解题思路:本人在写时,发现可以用递归来写。什么是递归:(忙人请略过)程序调用自身的编程技巧称为递归。递归做为一种算法在程序设计语言中广泛应用。递归,就是在运行的过程中调用自己。 一个过程或函数在其定义……

1180: 不容易系列

摘要:```cpp #include using namespace std; int f(int n) { if(n==1) return 1; return……