蓝桥杯2023年第十四届省赛真题-三国游戏 摘要: ```java import java.util.Arrays; import java.util.Scanner; public class Main { public static…… 题解列表 2024年02月28日 0 点赞 0 评论 973 浏览 评分:8.7
蓝桥杯2023年第十四届省赛真题-平均-python 摘要:一种Python解法,测试未超时参考代码:n =int(input())c = {0:0,1:0,2:0,3:0,4:0,5:0,6:0,7:0,8:0,9:0}d = {0: [], 1: [], …… 题解列表 2024年03月02日 0 点赞 0 评论 864 浏览 评分:8.7
蓝桥杯2023年第十四届省赛真题-飞机降落(dfs) 摘要:#include <bits/stdc++.h> using namespace std; const int N = 20; int vis[N]; int flag = 0; in…… 题解列表 2024年04月10日 0 点赞 0 评论 1384 浏览 评分:8.7
很简单,暴力枚举即可 摘要:解题思路:整体思路很简单,就是从个位开始枚举判断是否符合条件,接着看十位、百位...只要有一个不符合条件就结束判断。注意事项:注意取余和除十的先后顺序,取余也不要直接改变原数。参考代码:#includ…… 题解列表 2024年04月14日 0 点赞 2 评论 943 浏览 评分:8.7
数字诗意 - 找规律 摘要:#### 解题思路 手写 / 暴力打一个小表,下划线 `_` 表示无法表出的数字: ```text _ _ 3 _ 5 6 7 _ 9 10 11 12 13 14…… 题解列表 2024年04月18日 1 点赞 0 评论 1897 浏览 评分:8.7
[编程入门]温度转换 摘要:解题思路:使用公式进行转换注意事项:注意scanf("%lf",&f);或者scanf("%f",&f);如果你前面定义的f是用double类型的话,就应该用%lf格式,如果f是float类型的话,就…… 题解列表 2024年05月11日 0 点赞 0 评论 1036 浏览 评分:8.7
题解 2247: 蓝桥杯算法提高-输出三个整数的最大数 摘要:解题思路:注意事项:参考代码:#includeusing namespace std;typedef long long ll;ll maxx(ll a , ll b , ll c){ if( …… 题解列表 2024年06月08日 0 点赞 0 评论 422 浏览 评分:8.7
2749: Hello, World! 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout <<"Hello, World!"; return …… 题解列表 2024年06月09日 0 点赞 0 评论 730 浏览 评分:8.7
1035: [编程入门]自定义函数之字符类型统计(python) 摘要:### 代码如下 ~~~python a = [0] * 4 for i in input(): if i.isalpha(): a[0] += 1 e…… 题解列表 2024年10月15日 1 点赞 0 评论 548 浏览 评分:8.7
3008: 买笔题解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; char c; int result; scanf("%d%d",&a…… 题解列表 2024年11月24日 2 点赞 1 评论 529 浏览 评分:8.7