五行简便 编写题解 2781: 奇偶ASCII值判断 摘要:解题思路:ord注意事项:记得加冒号参考代码:n=input()if ord(n)%2==0: print('NO')else: print('YES')…… 题解列表 2024年04月04日 1 点赞 0 评论 556 浏览 评分:9.9
四行简便 编写题解 2846: 统计数字字符个数 摘要:解题思路:运用正则表达式注意事项:r=r'\d'参考代码:import ren=input()r=r'\d'print(len(re.findall(r,n)))…… 题解列表 2024年04月04日 0 点赞 0 评论 659 浏览 评分:9.9
3151: 蓝桥杯2023年第十四届省赛真题-飞机降落 摘要:#include<iostream>using namespace std;const int N = 15;//创建飞机结构体struct plane { int Ti, Di, Li;}p[N];…… 题解列表 2024年04月04日 0 点赞 0 评论 474 浏览 评分:0.0
题解 1668: printf基础练习2 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int num; // 读取输入整数 scanf("%d", &n…… 题解列表 2024年04月04日 2 点赞 0 评论 638 浏览 评分:0.0
2576: 蓝桥杯2020年第十一届省赛真题-解码 摘要: #include #include #include using namespace std; char str1[100]; char st…… 题解列表 2024年04月04日 0 点赞 0 评论 254 浏览 评分:0.0
信息学奥赛一本通T1250-The Castle 摘要:解题思路: BFS注意事项: 数组实现普通队列,注意队列长度 参考代码:#include<iostream> using namespace std; const int N = 1e2 + 10…… 题解列表 2024年04月04日 0 点赞 0 评论 231 浏览 评分:9.9
黄兢楷-拆分位数【C++题解】 摘要:题目要求:输入一个三位数,将它拆分开来,最后逆序输出。源代码要求:四个变量,第一个变量作为被运算的变量(number)。剩下三个变量作为运算变量(gewei,shiwei,baiwei)。源代码讲解:…… 题解列表 2024年04月03日 0 点赞 0 评论 599 浏览 评分:7.3
字符类型统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int *tongji(char *a){ int i; static int b[4]={0}; for(i=0;*(a+i)!=&#…… 题解列表 2024年04月03日 0 点赞 0 评论 248 浏览 评分:0.0
蓝桥杯2015年第六届真题-生命之树 摘要:解题思路:树形dp,查找最大子树和注意事项:集合可以为空,也就是说如果树中节点全小于0则为空集输出0参考代码:#include<bits/stdc++.h> using namespace std;…… 题解列表 2024年04月03日 0 点赞 0 评论 268 浏览 评分:0.0
蓝桥杯2015年第六届真题-移动距离 摘要:解题思路:通过简单数学得到两个门牌号的高度与距离最左边的宽度,相减求绝对值就好参考代码:#include<bits/stdc++.h> using namespace std; int w,m,n…… 题解列表 2024年04月03日 0 点赞 0 评论 242 浏览 评分:0.0