编写题解 1050: [编程入门]结构体之成绩记录 摘要: 注意结构体+函数的调用形式!!! ```c #include #include struct stu { char num[10]; char name[20]; i…… 题解列表 2023年03月16日 0 点赞 0 评论 438 浏览 评分:0.0
编写题解 1039: 宏定义之闰年判断 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;#define LEAP_YEAR(y) if(y%4==0&&y%100!=…… 题解列表 2023年03月16日 0 点赞 0 评论 392 浏览 评分:0.0
蓝桥杯2020年第十一届省赛真题-网络分析 摘要:解题思路:并查集加懒惰标记注意事项:注意标记清零。参考代码:#include<iostream> #include<unordered_map> #include<vector> #includ…… 题解列表 2023年03月16日 0 点赞 0 评论 619 浏览 评分:9.9
试了好几次,终于成功了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<malloc.h>typedef struct LNode{ int data; …… 题解列表 2023年03月16日 0 点赞 0 评论 506 浏览 评分:10.0
超级简单的代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]={0};char b[100]={0}; gets(…… 题解列表 2023年03月15日 0 点赞 0 评论 356 浏览 评分:0.0
模拟(不涉及任何算法!) 摘要:解题思路:这题20分白给啊!我前面一题就5分呜呜呜!!!注意事项:参考代码:n=eval(input())s=input()temp=list(["0"]*201 for i in range(201…… 题解列表 2023年03月15日 0 点赞 0 评论 520 浏览 评分:0.0
自由下落的距离计算, 摘要:解题思路:我们把每次弹起来看做一次终点,每段即为M+M/2注意事项:注意最后一次并没有弹起来所以需要减去一个M;参考代码:自由下落的距离计算#include<bits/stdc++.h>using n…… 题解列表 2023年03月15日 0 点赞 0 评论 341 浏览 评分:0.0
c++题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int check(int a){ int gewei = a%10; int …… 题解列表 2023年03月15日 0 点赞 0 评论 416 浏览 评分:0.0
1347: 八皇后 摘要: import java.util.*; public class 八皇后 { private static int max ; private static int[] ar…… 题解列表 2023年03月15日 0 点赞 0 评论 490 浏览 评分:9.9
1434: 蓝桥杯历届试题-回文数字 摘要: #include #include #include #include #include #include #include …… 题解列表 2023年03月15日 0 点赞 0 评论 483 浏览 评分:0.0