不容易系列2-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月13日 0 点赞 0 评论 262 浏览 评分:0.0
不容易系列2(递归)-题解(C语言代码) 摘要:解题思路:注意事项:参考代码://由数学知识可知,有n-1的阶乘种可能,真的吗?(其实是错误的,可以写一下,但不知为啥能过编译,很神奇)#includeint main (){ int n; whil…… 题解列表 2020年12月09日 0 点赞 0 评论 312 浏览 评分:0.0
Hifipsysta- 1181-不容易系列2(C++代码) 摘要:```cpp #include using namespace std; long long fact(long long n){ long long sum=1; fo…… 题解列表 2022年02月12日 0 点赞 0 评论 132 浏览 评分:0.0
不容易系列2 摘要:解题思路:注意事项:参考代码:#递归写法def f(x): if x ==1 : return 0 elif x == 2: return 1 else…… 题解列表 2023年10月26日 0 点赞 0 评论 59 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ if(n==2) return 1; if(n==3) return 2; else re…… 题解列表 2017年09月04日 0 点赞 0 评论 737 浏览 评分:0.0
不容易系列2 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.math.BigInteger; import java.util.*; import java.util.regex.Matcher; …… 题解列表 2019年01月13日 0 点赞 0 评论 433 浏览 评分:0.0
1181: 不容易系列2(错排问题,简单的动态规划) 摘要:解题思路:错排问题,规律就是 第 n 项 =(第 n-1 项 + 第 n-2 项)*(n-1);当然啦,要从 3个数开始。注意事项:参考代码:#include<iostream>using names…… 题解列表 2024年07月13日 0 点赞 0 评论 100 浏览 评分:0.0
高中找规律 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i, n, k; while (scanf("%d", &n) != EOF) {…… 题解列表 2022年11月12日 0 点赞 0 评论 68 浏览 评分:0.0
不容易系列2 (C++代码)(全排列) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<algorithm> using namespace std; int main() { int…… 题解列表 2019年02月13日 0 点赞 0 评论 436 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,sum;int a[21],b[21];void dfs(int k){ int i,j,l,p; if(k>n) { s…… 题解列表 2018年02月09日 0 点赞 0 评论 494 浏览 评分:0.0