判断密码是否正确 稍显麻烦但是好理解 摘要: #include #include int main() { char s[16]; int m; int …… 题解列表 2024年03月19日 0 点赞 1 评论 343 浏览 评分:9.9
C语言改版001 摘要:#include<stdio.h>#include<stdlib.h>typedef struct student{ int number; struct student*next;}no…… 题解列表 2024年03月19日 0 点赞 0 评论 344 浏览 评分:0.0
信息学奥赛一本通T1422-活动安排 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct Node{ int start,en…… 题解列表 2024年03月19日 1 点赞 0 评论 824 浏览 评分:9.9
java--study||O.o 摘要:参考代码: // 初始化是真TM重要,被折磨死了 import java.util.Arrays; import java.util.LinkedList; import java.util.…… 题解列表 2024年03月19日 0 点赞 0 评论 510 浏览 评分:0.0
2828: 与7无关的数 摘要:解题思路:注意事项:参考代码:n = int(input()) sum1 = 0 for x in range(1, n + 1): if x % 7 != 0 and "7" not …… 题解列表 2024年03月19日 0 点赞 0 评论 377 浏览 评分:0.0
2832: 第n小的质数 摘要:参考代码:import math n = int(input()) arr = [] for i in range(2, 100000): for j in range(2, int(…… 题解列表 2024年03月19日 0 点赞 0 评论 413 浏览 评分:9.9
主体C语言的简单链表 摘要:解题思路:封装函数 调用注意事项:参考代码://// Created by Freedom on 2024/3/19.//#include <iostream>#include <cstdio>usi…… 题解列表 2024年03月19日 0 点赞 0 评论 500 浏览 评分:0.0
python 2833: 金币 摘要:参考代码:n = int(input()) s = 0 money = 0 flag = n day = n while day > 0: flag -= 1 money…… 题解列表 2024年03月19日 0 点赞 0 评论 248 浏览 评分:0.0
1464: 蓝桥杯基础练习VIP-分解质因数 摘要:解题思路:注意事项:参考代码:nums_p = [] for x in range(2, 10001): for y in range(2, x + 1): if x %…… 题解列表 2024年03月19日 1 点赞 0 评论 452 浏览 评分:0.0
2831: 画矩形 摘要:参考代码:high, wide, s, flag = map(str, input().split()) for i in range(int(high)): for j in range…… 题解列表 2024年03月19日 0 点赞 0 评论 249 浏览 评分:0.0