莉露C++编写题解 3209: 蓝桥杯2024年第十五届省赛真题-好数 摘要:解题思路:如下注意事项:如下参考代码:#include<iostream>#include<string>using namespace std;int main(){ ios…… 题解列表 2026年04月10日 0 点赞 0 评论 1 浏览 评分:0.0
莉露C++编写题解 3321: 蓝桥杯2025年第十六届省赛真题-画展布置 摘要:解题思路:说白了就是排完序用最大的减最小的,中间的都没用。注意事项:for(int i=0;i+M-1<N;i++){long long diffe = s[i+M-1] - s[i];不要越界…… 题解列表 2026年04月10日 0 点赞 0 评论 15 浏览 评分:0.0
删除链表题解方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>typedef struct Node { i…… 题解列表 2026年04月10日 0 点赞 0 评论 7 浏览 评分:0.0
111111111111111111111111111 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2026年04月10日 0 点赞 0 评论 9 浏览 评分:0.0
莉露C++编写题解 3320: 蓝桥杯2025年第十六届省赛真题-产值调整 摘要:解题思路:前面加上ios::sync_with_stdio(false);cin.tie(nullptr);注意事项:我不到啊,豆包说的:我用最直白、最容易懂的方式告诉你:为什么不加那两行…… 题解列表 2026年04月10日 0 点赞 0 评论 56 浏览 评分:0.0
2754基础解法(简短输出) 摘要:解题思路:类比2752,2753,理解使用sizeof函数即可注意事项:C语言(C99 之前)没有内置 bool 类型所以需要在头部添加声明#include <stdbool.h>参考代码…… 题解列表 2026年04月09日 0 点赞 0 评论 17 浏览 评分:0.0
2752基础解法(简短输出) 摘要:解题思路:题目:分别定义int,short类型的变量各一个,并依次输出它们的存储空间大小(单位:字节)。…… 题解列表 2026年04月09日 0 点赞 0 评论 20 浏览 评分:0.0
【Kirito】1084使用筛法进行筛选 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;bool Is_crossed_over[1000005];int ma…… 题解列表 2026年04月08日 0 点赞 0 评论 20 浏览 评分:0.0
冶炼金属C++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main() { long long int a[10005],…… 题解列表 2026年04月08日 0 点赞 0 评论 34 浏览 评分:0.0