题解列表
蓝桥杯2022年第十三届省赛真题-字符统计(Python)
摘要:解题思路:注意事项:参考代码:s = input()a = sorted(list(set(s)))a.sort(reverse=True,key=lambda x:s.count(x))print(……
其他基本数据类型存储空间大小
摘要:解题思路:注意事项:直接使用的_Bool参考代码:#include<stdio.h>int main(){ _Bool a; char b; printf("%d %d\n",siz……
编写题解 2749: Hello, World!
摘要:解题思路:注意事项:参考代码:print('Hello, World!') #注意逗号后空一格……
菱形简单笨蛋解决方法,大同小异
摘要:解题思路:注意事项:参考代码:a = input()for i in range(3): print(' '*(2-i), end='') print(&#……
(C语言版)梯形面积
摘要:解题思路:先求出高为20,即可注意事项:参考代码:#include<stdio.h> //对应题目2997int main(){ float s; s=15+25; s=s*10;……
蓝桥杯2022年第十三届决赛真题-取模(Python组)
摘要:解题思路:注意事项:不知道为什么,提交后验证缓慢(要有耐心),但最终是正确的参考代码:t=int(input())l=[list(map(int,input().split())) for _ in ……
球弹跳高度的计算C语言
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int h; scanf("%d",&h); int i; double h1=h; double s=0; f……
2610————蓝桥杯2021年第十二届省赛真题-杨辉三角形(仿写题解)
摘要:来源:CSDN——https://blog.csdn.net/zhengyanyan123/article/details/123835896?ops_request_misc=&request_id……