【密码】 (C语言代码) 摘要:#include <stdio.h>#include <string.h>int main(){ int i,j,k,flag1,flag2,flag3,flag4,N; char a…… 题解列表 2018年02月27日 0 点赞 0 评论 1014 浏览 评分:0.0
wo宇大神的杀毒软件 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>void printu(int a){ int sum=0,i=0; int n[100]={0…… 题解列表 2018年02月27日 0 点赞 0 评论 1643 浏览 评分:0.0
逆反的01串 (C语言代码) 摘要:#include <stdio.h>int main(){ int i; char a[201]; while(gets(a)!=NULL) { … 题解列表 2018年02月27日 0 点赞 0 评论 2457 浏览 评分:8.7
蓝桥杯历届试题-分糖果 (C语言代码) 摘要:解题思路: 按照题意一步步做 发糖果->分享糖果->判断是否一样多->若不一样多给奇数补发糖果->分享糖果->判断是否一样多->若不一样多给奇数补发糖果->分享糖果……注意事项: 需…… 题解列表 2018年02月27日 0 点赞 0 评论 1837 浏览 评分:0.0
川哥的吩咐 (C语言代码) 摘要:解题思路: 输入的两个大数字用字符串读入,在运算的过程中转换为int类型(通过accii码规律)。注意事项: 1、数组下标与数字高地位的关系,a[0]、b[0]表示的是a和b的最高位,而c…… 题解列表 2018年02月27日 0 点赞 0 评论 1530 浏览 评分:0.0
蓝桥杯算法训练VIP-邮票 (C语言代码) 摘要:#include<stdio.h>int main(){int i,N,M,you_p[101],jiaz[100],tou_zheng=1;int biao[26000]={0};scanf("%d…… 题解列表 2018年02月27日 1 点赞 0 评论 1742 浏览 评分:0.0
数据结构-简单选择排序 (C++代码) 解题思路:注意事项:参考代码:自己总结出了一条代码://选择排序的基本思想是://每一趟比较过程中,//在n-i+1(i=1,2,...,n-1)//个记录中选取关键字最小的记录作为有序序列中的第i个记录。//在多种选择排序中,//最常用且形式最为简单的是简单选择排序。 题解列表 2018年02月26日 4 点赞 0 评论 2012 浏览 评分:0.0
蛇行矩阵 (C语言描述,变相输出矩阵) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,k,s,m,n; while(scanf("%d", &n)!=EOF){ …… 题解列表 2018年02月26日 1 点赞 0 评论 1371 浏览 评分:0.0
C语言训练-字符串正反连接 (C语言代码) 摘要:解题思路:利用发现的数学公式来解此题比较方便注意事项:参考代码:#include<stdio.h>#include<string.h> int main(){ int i, c, len; char …… 题解列表 2018年02月26日 0 点赞 0 评论 1347 浏览 评分:0.0
蓝桥杯算法提高VIP-多项式输出 (C语言代码) 摘要:解题思路:粗暴的循环+条件注意事项:注意用好if(a[i])参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i,k; int a[100…… 题解列表 2018年02月26日 0 点赞 0 评论 1543 浏览 评分:0.0