不容易系列2 (C语言代码) 摘要:解题思路:1.虽然题很长,但是真的很简单。2.本题就是错排公式的应用,可以记下来错排的定义:一段序列中一共有n个元素,那么可知这些元素一共有n!种排列方法。假如在进行排列时,原来所有的元素都不在原来的…… 题解列表 2017年07月24日 0 点赞 0 评论 959 浏览 评分:9.9
转化为字符数组 摘要:#include<stdio.h>#include<stdio.h>#include<ctype.h>#include<string.h>int main(){ char num[110],ge…… 题解列表 2017年07月24日 0 点赞 0 评论 947 浏览 评分:0.0
蛇行矩阵 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void f(int n) { int a[100][100],i,j; a[1][1]=1; fo…… 题解列表 2017年07月23日 0 点赞 0 评论 715 浏览 评分:0.0
蛇行矩阵 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> void f(int n) { int a[100],i,j=1; a[1]=1; for(i=2;…… 题解列表 2017年07月23日 0 点赞 0 评论 714 浏览 评分:0.0
字符逆序 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main(void) { char str[100],c; char *be…… 题解列表 2017年07月23日 1 点赞 1 评论 468 浏览 评分:0.0
用筛法求之N内的素数。 (C语言代码) 摘要:#include<stdio.h> int Is_prime(int x) { int i; if(x<2) return 0; for(i=2;i<x;i++) …… 题解列表 2017年07月23日 1 点赞 0 评论 877 浏览 评分:0.0
用筛法求之N内的素数。 (C++代码) 摘要:#include<iostream> using namespace std; int Is_prime(int x) { int i; if(x<2) return 0; …… 题解列表 2017年07月23日 0 点赞 0 评论 707 浏览 评分:0.0
上车人数 (C语言代码) 摘要:注意事项:分析题目可知上下车人数是与第二次下车人数有关的,然后每次只要知道倍数关系就好了。最前面的两站得初始化,不然后面无法通过关系得到。结果可以列出上下车的情况观察得出。参考代码:#include<…… 题解列表 2017年07月23日 15 点赞 0 评论 1948 浏览 评分:9.5
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<ctype.h>#include<string.h>int main(){ int i,L; char c…… 题解列表 2017年07月23日 0 点赞 0 评论 706 浏览 评分:0.0
宏定义 摘要:#include<stdio.h>#define Swap(a,b) t = b; b = a;a = tint main(){ int a,b,t; scanf("%d%d",&a,&b…… 题解列表 2017年07月23日 0 点赞 0 评论 963 浏览 评分:9.9