题解 1181: 不容易系列2

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

筛选

不容易系列2(递归)-题解(C语言代码)

摘要:解题思路:注意事项:参考代码://由数学知识可知,有n-1的阶乘种可能,真的吗?(其实是错误的,可以写一下,但不知为啥能过编译,很神奇)#includeint main (){ int n; whil……

不容易系列2

摘要:解题思路:注意事项:参考代码:#递归写法def f(x):    if x  ==1 :        return 0    elif x == 2:        return 1    else……

不容易系列2 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){    if(n==2) return 1;    if(n==3) return 2;    else re……

不容易系列2 (Java代码)

摘要:解题思路:注意事项:参考代码: import java.math.BigInteger; import java.util.*; import java.util.regex.Matcher; ……

高中找规律

摘要:解题思路:注意事项:参考代码:#include<stdio.h>  int main(){    int i, n, k;    while (scanf("%d", &n) != EOF)    {……