题解列表

筛选

2831: 画矩形

摘要:参考代码:high, wide, s, flag = map(str, input().split()) for i in range(int(high)):     for j in range……

python 2833: 金币

摘要:参考代码:n = int(input()) s = 0 money = 0 flag = n day = n while day > 0:     flag -= 1     money……

主体C语言的简单链表

摘要:解题思路:封装函数 调用注意事项:参考代码://// Created by Freedom on 2024/3/19.//#include <iostream>#include <cstdio>usi……

2828: 与7无关的数

摘要:解题思路:注意事项:参考代码:n = int(input()) sum1 = 0 for x in range(1, n + 1):     if x % 7 != 0 and "7" not ……

java--study||O.o

摘要:参考代码: // 初始化是真TM重要,被折磨死了 import java.util.Arrays; import java.util.LinkedList; import java.util.……

C语言改版001

摘要:#include<stdio.h>#include<stdlib.h>typedef struct student{    int number;    struct student*next;}no……

三个数的排序

摘要:解题思路:注意事项:参考代码:import java.util.Arrays;import java.util.Scanner;public class Mian { public static vo……

链表归并排序

摘要:解题思路:注意事项:参考代码:import java.util.*;class ListNode { int id; int grand; ListNode next; public ListNode……

三个数的排序

摘要:解题思路:使用冒泡排序思想注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[]……