蓝桥杯算法提高VIP-种树 (C语言代码) 摘要:解题思路:递归就可以了注意事项:参考代码:#include<stdio.h>int keng[40]={0},best=-1,n;int zhon_s(int wei,int begin,int m,…… 题解列表 2018年02月27日 0 点赞 0 评论 2212 浏览 评分:3.3
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码) 摘要:解题思路:用循环来写注意事项:参考代码:#include <stdio.h>//求[X,Y]内被除3余1并且被除5余3的整数的和int main(){ int x,y; scanf("%d %d",&…… 题解列表 2018年02月27日 0 点赞 0 评论 825 浏览 评分:9.9
人见人爱A+B (C语言代码) 摘要:解题思路:运用时间60进制的特点,满60进1;参考代码:#include<stdio.h>int main(void){ int i,n,a,b,c,d,e,f; scanf("%d",&n); fo…… 题解列表 2018年02月27日 0 点赞 0 评论 700 浏览 评分:0.0
整除的尾数 (C语言代码) 摘要:#include <stdio.h>int main(){ int i,j,k,a,b; int c[10000]; while(scanf("%d%d",&a,&b)&&a&…… 题解列表 2018年02月27日 0 点赞 0 评论 839 浏览 评分:0.0
蛇行矩阵 (Java代码) 摘要:解题思路:非常简单易懂的方法~~!注意事项:行和列的数字变换不可以合并哦~参考代码:import java.util.*;public class Main {public static void m…… 题解列表 2018年02月27日 0 点赞 0 评论 875 浏览 评分:0.0
【密码】 (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 评论 642 浏览 评分:0.0
蓝桥杯算法提高VIP-Torry的困惑(提高型) (C++代码) 摘要:千万别用递归做,太sb了o(╥﹏╥)o参考代码:#include <iostream> using namespace std; long long f(int n,int i,long long…… 题解列表 2018年02月27日 0 点赞 0 评论 1199 浏览 评分: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 评论 1110 浏览 评分:0.0
逆反的01串 (C语言代码) 摘要:#include <stdio.h>int main(){ int i; char a[201]; while(gets(a)!=NULL) { … 题解列表 2018年02月27日 0 点赞 0 评论 1986 浏览 评分:8.7
蓝桥杯历届试题-分糖果 (C语言代码) 摘要:解题思路: 按照题意一步步做 发糖果->分享糖果->判断是否一样多->若不一样多给奇数补发糖果->分享糖果->判断是否一样多->若不一样多给奇数补发糖果->分享糖果……注意事项: 需…… 题解列表 2018年02月27日 0 点赞 0 评论 1063 浏览 评分:0.0