题解列表
1072基础解法(Python)
摘要:解题思路:简单思路注意事项:了解divmod()函数的基础用法参考代码:import sysfor line in sys.stdin : bot = int(line) if bot =……
1118:TOM数超简单字符数组算法
摘要:解题思路:字符数组,记得-‘0’将字符转换成数字注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>#include <al……
python水仙花数判断
摘要:解题思路:直接用到pow函数注意事项:注意符号参考代码:for i in range(100,999): a=int(i%10) b=int(i/10%10) c=int(i/100……
蓝桥杯算法训练-字符串合并
摘要:### C++中的string类
```c++
#include
#include
using namespace std;
int main()
{
string a,b;……
编写题解 2006: 寻找奇整数
摘要:## 暴力查找
```c++
#include
int main()
{
int nums[] = { 3,7,5,13,25,45,78,23,8,33,9,19,28,41,5……
2001: 边长判断
摘要:## if判断
```c++
#include
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
……