不容易系列2-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月13日 0 点赞 0 评论 278 浏览 评分: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 评论 745 浏览 评分:0.0
高中找规律 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int i, n, k; while (scanf("%d", &n) != EOF) {…… 题解列表 2022年11月12日 0 点赞 0 评论 76 浏览 评分: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 评论 500 浏览 评分:0.0
不容易系列2 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.math.BigInteger; import java.util.*; import java.util.regex.Matcher; …… 题解列表 2019年01月13日 0 点赞 0 评论 455 浏览 评分:0.0
全排列,阶乘 摘要:解题思路:第一个人要装错信封,那他除了自己的信封外,有n-1种选择;第二个人除去自己的那封和第一个人的那个信封外有n-2种选择……实际上就是一个全排列的题,使用阶乘即可解决注意事项:参考代码:impo…… 题解列表 2024年03月13日 0 点赞 0 评论 120 浏览 评分:0.0
排列做比较 c代码 摘要:解题思路:全排列后做比较注意事项:n超过11长度不够 不能用整型变量储存代码比较复杂 没想到别的参考代码:#include <stdio.h>void printpermutation(int a[]…… 题解列表 2023年10月12日 0 点赞 0 评论 68 浏览 评分:0.0
不容易系列2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2018年04月22日 1 点赞 0 评论 511 浏览 评分:0.0
不容易系列2(递推 + 排列) 摘要:解题思路:递推(排列)注意事项:参考代码:#include<iostream>#include<cmath>usingnamespacestd;…… 题解列表 2025年01月21日 0 点赞 0 评论 21 浏览 评分:0.0
不容易系列2-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,sum; sum = 1; while (scanf("%d",&n) != EOF) { f…… 题解列表 2020年12月08日 0 点赞 0 评论 233 浏览 评分:0.0