开心的金明 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string.h> using namespace std; long int dp[26][30001…… 题解列表 2019年03月02日 0 点赞 0 评论 1265 浏览 评分:0.0
蓝桥杯算法提高VIP-数字黑洞 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Arrays; import java.util.Scanner; public class Main { public sta…… 题解列表 2019年03月02日 0 点赞 0 评论 756 浏览 评分:0.0
课后习题1.6 (C++代码)max_element 摘要:注意事项:用到max_element参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int a…… 题解列表 2019年03月02日 0 点赞 0 评论 884 浏览 评分:0.0
蓝桥杯算法提高VIP-P0101 (C语言代码)自己算答案是对的,还有什么没考虑周全不知道 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double n,k; scanf("%lf",&n); k=(n*0.95*(1E26)/3); printf…… 题解列表 2019年03月02日 0 点赞 0 评论 1035 浏览 评分:0.0
蓝桥杯基础练习VIP-矩阵乘法 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn…… 题解列表 2019年03月02日 0 点赞 0 评论 1075 浏览 评分:0.0
DNA (C语言代码) 摘要:解题思路:先打印第一组图案,在对角线上面才打印:行数和列数相同时和行数和列数相加等于a - 1再打印后面的图案就每个少打印第一行的图案就可以了注意事项:输出的“X”是大写的参考代码:#include …… 题解列表 2019年03月02日 0 点赞 0 评论 1189 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁 (C语言代码) 摘要:#include<stdio.h> #define MAX 100 char dir[5] = {'U', 'R', 'D', 'L&#…… 题解列表 2019年03月02日 0 点赞 0 评论 891 浏览 评分:0.0
计算两个矩阵的乘积 (C++代码) 摘要:#include <stdio.h> #include <iostream> #include <algorithm> using namespace std; const int maxn …… 题解列表 2019年03月02日 0 点赞 0 评论 1077 浏览 评分:0.0
十->二进制转换 (C语言代码) 摘要:#include<stdio.h> int tran(int x) { int flag=0,i=0,a[100],t; t=x; if(x<0) { …… 题解列表 2019年03月02日 0 点赞 0 评论 815 浏览 评分:0.0
剔除相关数 (C语言代码) 每一步都很简单,最重要的就是如何保证每一步都正确 摘要:#include<stdio.h> int rely(int x,int y) //判断是否相关,相关则返回1,否则0 { int a[10],b[10],i=0,…… 题解列表 2019年03月02日 0 点赞 0 评论 1140 浏览 评分:9.9