题解列表
使用for循环遍历所有三位数,一个一个地判断是否符合要求
摘要:解题思路:使用for循环遍历所有三位数,一个一个地判断是否符合要求注意事项:注意括号配对,需要细心检查参考代码:#include<bits/stdc++.h>using namespace……
1735: 树查找 完全二叉树
摘要:#include<bits/stdc++.h>usingnamespacestd;intmain(){ ……
1734: 二叉树遍历 递归
摘要:voidprintlast(stringpre,stringmid){//判空&nb……
蓝桥杯2022年第十三届省赛真题-纸张尺寸
摘要:解题思路:注意事项:参考代码:n=input()match n: case 'A0': print(11……