P1081 题解 (Java代码) 摘要:import java.util.LinkedHashMap; import java.util.Scanner; public class Main{ public static v…… 题解列表 2022年02月20日 0 点赞 0 评论 355 浏览 评分: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 评论 412 浏览 评分:0.0
十->二进制转换 摘要:```cpp #include #include #include typedef struct SNode{ long long data; struct SNode *ne…… 题解列表 2022年02月20日 0 点赞 0 评论 444 浏览 评分: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 评论 1173 浏览 评分: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]动态规划&遍历 摘要:# 问题描述 注意事项:每完成一次连接,最后一个字符要变成'\0'参考代码:#include<stdio.h>#include<string.h>conne…… 题解列表 2022年02月20日 0 点赞 0 评论 736 浏览 评分:9.9