题解 1180: 不容易系列

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

筛选

不容易系列(递推)

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

编写题解 1180: 不容易系列

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void sum(int t){    int i;    int x=3;    for(i=1;i<=t;i++)    {    ……

1180: 不容易系列

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

编写题解 1180: 不容易系列

摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n):     a=int(input())     y=3     for j in range(a……

不容易系列

摘要:```c #include int hanshu(int k);//函数声明 int hanshu (int k)//函数定义 { int n=0,i;//n 为第K站的绵羊的数量 ……
优质题解

不容易系列 递归求解

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