题解列表
装包装箱问题(看过大佬思路后写出来的)
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b,c,d,e,f; int&n……
使用for循环遍历所有三位数,一个一个地判断是否符合要求
摘要:解题思路:使用for循环遍历所有三位数,一个一个地判断是否符合要求注意事项:注意括号配对,需要细心检查参考代码:#include<bits/stdc++.h>using namespace……
1735: 树查找 完全二叉树
摘要:#include<bits/stdc++.h>usingnamespacestd;intmain(){ ……