二级C语言-进制转换 摘要:```cpp #include #include typedef struct SNode{ int data; struct SNode *next; }SNode,*Lin…… 题解列表 2022年02月20日 0 点赞 0 评论 426 浏览 评分:0.0
记录一蛤 T#T 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<string.h>#include<ctype.h>int even(int a){ …… 题解列表 2022年02月20日 0 点赞 0 评论 319 浏览 评分:0.0
1431: 蓝桥杯2014年第五届真题-分糖果(java代码) 摘要:解题思路: 没有太多技巧,模拟每一次动作,然后判断就完事。注意事项:参考代码:import java.util.Scanner;public class 分糖果 { public static …… 题解列表 2022年02月20日 0 点赞 0 评论 354 浏览 评分:0.0
P1081 题解 (Java代码) 摘要:import java.util.LinkedHashMap; import java.util.Scanner; public class Main{ public static v…… 题解列表 2022年02月20日 0 点赞 0 评论 321 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))a = eval(input())li.append(a)li.sort(reverse = Fa…… 题解列表 2022年02月20日 0 点赞 0 评论 430 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))for i in li[::-1]: print(i,end=' ')…… 题解列表 2022年02月20日 0 点赞 0 评论 386 浏览 评分:0.0
十->二进制转换 摘要:```cpp #include #include #include typedef struct SNode{ long long data; struct SNode *ne…… 题解列表 2022年02月20日 0 点赞 0 评论 418 浏览 评分:0.0
还行,一般般吧 摘要:解题思路:注意事项:参考代码:lst1=[list(map(int,input().split()))for i in range(3)]lst2=[]for m in range(3): fo…… 题解列表 2022年02月20日 0 点赞 0 评论 382 浏览 评分:0.0
[python]动态规划&遍历 摘要:# 问题描述  摘要:解题思路:依靠四个方位来进行移动注意事项:仔细一点参考代码:m,n=map(int,input().split())list1=[[0]*n for i in range(m)]for i in ra…… 题解列表 2022年02月20日 0 点赞 0 评论 407 浏览 评分:0.0