蓝桥杯历届试题-高僧斗法 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>void chang_bit(int * z_dui,int bit_dui[100][10],int …… 题解列表 2018年02月26日 0 点赞 1 评论 1484 浏览 评分:3.6
检查一个数是否为质数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) {…… 题解列表 2018年05月30日 0 点赞 0 评论 826 浏览 评分:3.6
数据结构-n阶Hanoi塔问题 (C语言代码) 摘要: 解题思路:找到他们之间的重复过程,使用递归求解。 hanoi`塔的搬运过程; i :左边的柱子只有两个圆盘我们先假设在A柱子上只有两个圆盘,不用图我们用大脑想象出来最佳…… 题解列表 2018年07月31日 0 点赞 0 评论 1246 浏览 评分:3.6
蓝桥杯2013年第四届真题-公式求值 (C语言代码) 摘要:解题思路: 因为数据大,所以用了无损乘法和无损加法和无损求余,能得出答案,多大都行。 但是超极限了,希望有大佬帮帮忙.... 注意事项: 参考…… 题解列表 2019年02月15日 1 点赞 0 评论 2380 浏览 评分:3.6
蓝桥杯2017年第八届真题-日期问题 (C语言代码) 摘要:package 第八届B组;import java.util.*;public class 日期问题 { public static void main(String[] args) { bool…… 题解列表 2019年03月12日 0 点赞 3 评论 734 浏览 评分:3.6
蓝桥杯2013年第四届真题-格子刷油漆 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int n,sum=0,i,j; int a[2][100]={0}; void dfs(int x,int y,int num){ …… 题解列表 2019年03月17日 0 点赞 2 评论 1378 浏览 评分:3.6
[编程入门]结构体之成绩记录 (C语言代码)不用函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char xue[100],name[100]; int x1,x2,x3,i,n; s…… 题解列表 2019年04月14日 0 点赞 1 评论 534 浏览 评分:3.6
二叉树 (C++代码) 摘要:```cpp #include using namespace std; int f(int n){ int sum=1; for(int i=0;i>n>>m){ …… 题解列表 2020年03月30日 0 点赞 0 评论 812 浏览 评分:3.6
[编程入门]数组插入处理-题解(C语言代码)最简单的方法 摘要:```c #include int main(void) { int n[10]={0}; for (int i=0; i…… 题解列表 2020年04月12日 0 点赞 2 评论 850 浏览 评分:3.6
排列(C++)就一个字,暴力!!! 摘要:```cpp #include using namespace std; int main(int agrc, char const *argv[]) { int n; …… 题解列表 2020年04月21日 0 点赞 0 评论 618 浏览 评分:3.6