1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))a = eval(input())li.append(a)li.sort(reverse = Fa…… 题解列表 2022年02月20日 0 点赞 0 评论 351 浏览 评分:0.0
P1081 题解 (Java代码) 摘要:import java.util.LinkedHashMap; import java.util.Scanner; public class Main{ public static v…… 题解列表 2022年02月20日 0 点赞 0 评论 273 浏览 评分:0.0
1431: 蓝桥杯2014年第五届真题-分糖果(java代码) 摘要:解题思路: 没有太多技巧,模拟每一次动作,然后判断就完事。注意事项:参考代码:import java.util.Scanner;public class 分糖果 { public static …… 题解列表 2022年02月20日 0 点赞 0 评论 305 浏览 评分:0.0
二级c语言-计负均正(C++ 代码) 摘要:解题思路:1、先定义20大小的数组,两个计数count,分别用来计算正数和负数的个数2、定义sum用来计算正数的和,用ave来计算正数的平均数注意事项:1、计算平均数要记得类型转换2、输出负数个数(c…… 题解列表 2022年02月20日 0 点赞 0 评论 612 浏览 评分:8.0
还行,一般般吧 摘要:解题思路:注意事项:参考代码:def hanshu(a, b, c): det = b ** 2 - 4 * a * c if det > 0: x1 = (-b + pow…… 题解列表 2022年02月20日 0 点赞 0 评论 548 浏览 评分:9.9
记录一蛤 T#T 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<string.h>#include<ctype.h>int even(int a){ …… 题解列表 2022年02月20日 0 点赞 0 评论 272 浏览 评分:0.0
二级C语言-进制转换 摘要:```cpp #include #include typedef struct SNode{ int data; struct SNode *next; }SNode,*Lin…… 题解列表 2022年02月20日 0 点赞 0 评论 375 浏览 评分:0.0
二级c语言-同因查找(C++ 代码) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main () { int i; for (i = 10; i < …… 题解列表 2022年02月20日 0 点赞 0 评论 503 浏览 评分:8.0
1772: [编程入门]二进制移位练习 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main(){ int a; scanf("%d", &a); printf("%d\n", (a >> …… 题解列表 2022年02月20日 0 点赞 0 评论 389 浏览 评分:0.0
二级c语言-等差数列(C++ 代码) 摘要:注意事项:变量sum 要初始化参考代码:#include <iostream>using namespace std;int main () { int n, sum = 0; int…… 题解列表 2022年02月20日 0 点赞 0 评论 467 浏览 评分:8.0