1431: 蓝桥杯2014年第五届真题-分糖果(java代码) 摘要:解题思路: 没有太多技巧,模拟每一次动作,然后判断就完事。注意事项:参考代码:import java.util.Scanner;public class 分糖果 { public static …… 题解列表 2022年02月20日 0 点赞 0 评论 379 浏览 评分:0.0
P1081 题解 (Java代码) 摘要:import java.util.LinkedHashMap; import java.util.Scanner; public class Main{ public static v…… 题解列表 2022年02月20日 0 点赞 0 评论 353 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))a = eval(input())li.append(a)li.sort(reverse = Fa…… 题解列表 2022年02月20日 0 点赞 0 评论 467 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))for i in li[::-1]: print(i,end=' ')…… 题解列表 2022年02月20日 0 点赞 0 评论 411 浏览 评分:0.0
十->二进制转换 摘要:```cpp #include #include #include typedef struct SNode{ long long data; struct SNode *ne…… 题解列表 2022年02月20日 0 点赞 0 评论 443 浏览 评分:0.0
蓝桥杯2020年第十一届国赛真题-循环小数C语言解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int p,q,x; scanf("%d%d",&p,&q); …… 题解列表 2022年02月20日 0 点赞 0 评论 1172 浏览 评分:7.2
人民币为什么没有20.。。。 摘要:解题思路: 先把人民币的面值都定义出来,然后看题目是多组输入,所以就要用到while来输入多组 输入一个n表示人数,后面再输入n个人的工资,题目…… 题解列表 2022年02月20日 0 点赞 0 评论 693 浏览 评分:9.9
1028: [编程入门]自定义函数求一元二次方程 摘要:解题思路:注意事项:参考代码:def fun(a, b, c): d = b**2 - 4 * a * c if d > 0: x1 = (-b + pow(d, 0.5))…… 题解列表 2022年02月20日 0 点赞 0 评论 580 浏览 评分:9.9
还行,一般般吧 摘要:解题思路:注意事项:参考代码:lst1=[list(map(int,input().split()))for i in range(3)]lst2=[]for m in range(3): fo…… 题解列表 2022年02月20日 0 点赞 0 评论 404 浏览 评分:0.0
[python]动态规划&遍历 摘要:# 问题描述 ![在这里插入图片描述](https://img-blog.csdnimg.cn/e2212520b81a4e519572ca74fb4d371d.png?x-oss-process=…… 题解列表 2022年02月20日 0 点赞 0 评论 509 浏览 评分:0.0