题解 1181: 不容易系列2

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

筛选

排列做比较 c代码

摘要:解题思路:全排列后做比较注意事项:n超过11长度不够 不能用整型变量储存代码比较复杂 没想到别的参考代码:#include <stdio.h>void printpermutation(int a[]……

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

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

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

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

高中找规律

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