python 1098: 陶陶摘苹果 摘要:**没什么好注意的,按题目要求来** ```python a = list(map(int,input().strip().split())) b = int(input().strip()…… 题解列表 2024年09月06日 0 点赞 0 评论 450 浏览 评分:0.0
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 评论 360 浏览 评分:0.0
对题2815:求特殊自然数的题解分析 摘要:解题思路:先写出将一个整数转换为七进制数和九进制数的函数,分别逢九进一,逢七进一,思路为先找出不超过n的最大的最大幂,然后分别向下求对应的余数,并记录下来,对于的余数乘对于的十的幂,从而表示出对应的数…… 题解列表 2024年09月06日 0 点赞 0 评论 333 浏览 评分:9.9
编写题解 1097: 蛇行矩阵 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2024年09月06日 0 点赞 0 评论 439 浏览 评分:9.9
编写题解 1009: [编程入门]数字的处理与判断 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include<string.h>int main(){ int x,count; …… 题解列表 2024年09月06日 0 点赞 0 评论 186 浏览 评分:0.0
编写题解 1012: [编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ char str[100];…… 题解列表 2024年09月06日 1 点赞 0 评论 338 浏览 评分:0.0
编写题解 1013: [编程入门]Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int everyresult(int n);int ma…… 题解列表 2024年09月06日 0 点赞 0 评论 177 浏览 评分:0.0
编写题解 1014: [编程入门]阶乘求和 摘要:解题思路:注意事项:注意结果范围,防止溢出参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>long long everyres…… 题解列表 2024年09月06日 0 点赞 0 评论 545 浏览 评分:0.0
编写题解 1115: DNA 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2024年09月06日 0 点赞 0 评论 245 浏览 评分:9.9
对题2751:注意printf函数的使用以及\n字符的使用 摘要:解题思路:直接复制样例中每一行的输入内容,粘贴到打印语句中即可。注意事项:在输出样例中,由于行长原因,某些在同一行中的内容显示成了两行,注意辨别即可。参考代码:#include<stdio.h>int…… 题解列表 2024年09月06日 0 点赞 0 评论 646 浏览 评分:9.9