人民币为什么没有20.。。。 摘要:解题思路: 先把人民币的面值都定义出来,然后看题目是多组输入,所以就要用到while来输入多组 输入一个n表示人数,后面再输入n个人的工资,题目…… 题解列表 2022年02月20日 0 点赞 0 评论 559 浏览 评分:9.9
蓝桥杯2020年第十一届国赛真题-循环小数C语言解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int p,q,x; scanf("%d%d",&p,&q); …… 题解列表 2022年02月20日 0 点赞 0 评论 1080 浏览 评分:7.2
十->二进制转换 摘要:```cpp #include #include #include typedef struct SNode{ long long data; struct SNode *ne…… 题解列表 2022年02月20日 0 点赞 0 评论 358 浏览 评分:0.0
1026: [编程入门]数字逆序输出 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))for i in li[::-1]: print(i,end=' ')…… 题解列表 2022年02月20日 0 点赞 0 评论 319 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:注意事项:参考代码:li = list(map(int, input().split()))a = eval(input())li.append(a)li.sort(reverse = Fa…… 题解列表 2022年02月20日 0 点赞 0 评论 356 浏览 评分:0.0
P1081 题解 (Java代码) 摘要:import java.util.LinkedHashMap; import java.util.Scanner; public class Main{ public static v…… 题解列表 2022年02月20日 0 点赞 0 评论 276 浏览 评分:0.0
1431: 蓝桥杯2014年第五届真题-分糖果(java代码) 摘要:解题思路: 没有太多技巧,模拟每一次动作,然后判断就完事。注意事项:参考代码:import java.util.Scanner;public class 分糖果 { public static …… 题解列表 2022年02月20日 0 点赞 0 评论 308 浏览 评分:0.0
二级c语言-计负均正(C++ 代码) 摘要:解题思路:1、先定义20大小的数组,两个计数count,分别用来计算正数和负数的个数2、定义sum用来计算正数的和,用ave来计算正数的平均数注意事项:1、计算平均数要记得类型转换2、输出负数个数(c…… 题解列表 2022年02月20日 0 点赞 0 评论 616 浏览 评分:8.0
还行,一般般吧 摘要:解题思路:注意事项:参考代码:def hanshu(a, b, c): det = b ** 2 - 4 * a * c if det > 0: x1 = (-b + pow…… 题解列表 2022年02月20日 0 点赞 0 评论 551 浏览 评分: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 评论 274 浏览 评分:0.0