题解列表

筛选

python 1098: 陶陶摘苹果

摘要:**没什么好注意的,按题目要求来** ```python a = list(map(int,input().strip().split())) b = int(input().strip()……

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……

数字的处理与判断(新手)

摘要:解题思路:我这个没有用数组的方法来写,非常简单,新手都看得懂,但是不是满分注意事项:希望大佬帮我调一下参考代码:import java.util.Scanner;public class Main {……

1042: [编程入门]电报加密

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    char a[100];    gets(a);    for(int……

[编程入门]三个数字的排序

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a[100];    for(int i=0;i<3;i++)    {        scanf……