蓝桥杯基础练习-十六进制转八进制 -题解(C语言代码) 摘要:解题思路:先将16转10再将10转8注意事项:参考代码:#include<bits/stdc++.h> #include<math.h> using namespace std; void fu…… 题解列表 2020年08月22日 0 点赞 1 评论 1784 浏览 评分:8.4
A+B for Input-Output Practice (IV)-题解(Python代码) 摘要:参考代码:x = input()s = x.split(" ")i = int(s[0])while not i==0: sum = 0 for j in range(i): …… 题解列表 2020年08月22日 0 点赞 0 评论 661 浏览 评分:0.0
蓝桥杯算法提高VIP-寻找三位数-题解(Java代码) 摘要:解题思路:全排列 判断条件是否满足注意事项:参考代码:public class llq1{ public static void main(String[] args) { int []A= {1,…… 题解列表 2020年08月22日 0 点赞 0 评论 814 浏览 评分:0.0
[编程入门]自定义函数之整数处理-题解(C语言代码) 摘要:解题思路:注意事项:这题有点奇葩,用选择排序不行。冒泡就行。我佛了参考代码:#include <stdio.h>void str1(int *a);void str2(int *a);void str…… 题解列表 2020年08月22日 0 点赞 0 评论 852 浏览 评分:0.0
三位数分解-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main(){ int a; scanf("%d",&…… 题解列表 2020年08月21日 0 点赞 0 评论 706 浏览 评分:0.0
蓝桥杯算法提高VIP-约数个数-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main(){ int N,count=0; scan…… 题解列表 2020年08月21日 0 点赞 0 评论 702 浏览 评分:0.0
蓝桥杯算法提高VIP-三个整数的排序-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>#include <string.h>int main(){ int a[3],temp; for(…… 题解列表 2020年08月21日 0 点赞 0 评论 654 浏览 评分:0.0
[编程入门]结构体之成绩统计2-题解(C语言代码) 摘要:```c #include #include typedef struct GRADE{ char idex[100]; char name[100]; int chinese…… 题解列表 2020年08月21日 0 点赞 0 评论 715 浏览 评分:0.0
[编程入门]结构体之成绩记录-题解(C语言代码) 摘要:```c #include #include typedef struct GRADE{ char idex[100]; char name[100]; int chinese…… 题解列表 2020年08月21日 0 点赞 0 评论 625 浏览 评分:0.0
蓝桥杯2019年第十届真题-外卖店优先级-题解(Java代码) 摘要:**解题思路:因为数据量比较大,所以按常规的开个二维数组来存储数据在进行判断的话肯定是会超时的,然后要用到二维的不定长数组,代码的话是有参考楼上的,我这边只是用java方式写一下。 ```jav…… 题解列表 2020年08月21日 0 点赞 0 评论 1015 浏览 评分:0.0