python 2835: 计算书费 摘要:```python prices = [28.9,32.7,45.6,78,35,86.2,27.8,43,56,65] num = list(map(int,input().strip().sp…… 题解列表 2024年09月06日 0 点赞 0 评论 501 浏览 评分:0.0
python 1098: 陶陶摘苹果 摘要:**没什么好注意的,按题目要求来** ```python a = list(map(int,input().strip().split())) b = int(input().strip()…… 题解列表 2024年09月06日 0 点赞 0 评论 546 浏览 评分:0.0
python与指定数字相同的数的个数 摘要:**主要是用了count方法来查找列表中指定元素的个数** ```python a = list(map(int,input().strip().split())) while len(a) <…… 题解列表 2024年09月06日 3 点赞 0 评论 674 浏览 评分:0.0
C++容器(深度优先遍历算法)解题 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <vector>#include <set>#include <algorithm>using namespace…… 题解列表 2024年09月06日 0 点赞 0 评论 439 浏览 评分:0.0
2925: 单词排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <string.h> #include <iostream> #i…… 题解列表 2024年09月06日 0 点赞 0 评论 331 浏览 评分:9.9
编写题解 1094: 字符串的输入输出处理 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2024年09月05日 0 点赞 0 评论 391 浏览 评分:9.9
java-计算线段长度 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args…… 题解列表 2024年09月05日 0 点赞 0 评论 438 浏览 评分:0.0
java-计算三角形面积 摘要:```java import java.util.Scanner; public class Main{ public static void main(String[] args){ …… 题解列表 2024年09月05日 0 点赞 0 评论 469 浏览 评分:0.0
python求整数的和与均值 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split()))while len(a)<=a[0]: a.extend(map(int,input().spl…… 题解列表 2024年09月05日 0 点赞 0 评论 966 浏览 评分:5.3
python整数平均值 摘要:解题思路:注意事项:参考代码:while True: try: a = int(input()) b = list(map(int,input().strip().s…… 题解列表 2024年09月05日 1 点赞 0 评论 616 浏览 评分:0.0