Big Bang(一般解法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>typedef struct Node{ char a[32];…… 题解列表 2023年05月24日 0 点赞 0 评论 173 浏览 评分:0.0
1072基础解法(Python) 摘要:解题思路:简单思路注意事项:了解divmod()函数的基础用法参考代码:import sysfor line in sys.stdin : bot = int(line) if bot =…… 题解列表 2023年05月24日 0 点赞 0 评论 178 浏览 评分:0.0
1118:TOM数超简单字符数组算法 摘要:解题思路:字符数组,记得-‘0’将字符转换成数字注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>#include <al…… 题解列表 2023年05月25日 0 点赞 0 评论 223 浏览 评分:0.0
python水仙花数判断 摘要:解题思路:直接用到pow函数注意事项:注意符号参考代码:for i in range(100,999): a=int(i%10) b=int(i/10%10) c=int(i/100…… 题解列表 2023年05月26日 0 点赞 0 评论 185 浏览 评分:0.0
计算两点间的距离 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Dome25 { public static void main(String…… 题解列表 2023年05月26日 0 点赞 0 评论 222 浏览 评分:0.0
蓝桥杯算法训练-字符串合并 摘要:### C++中的string类 ```c++ #include #include using namespace std; int main() { string a,b;…… 题解列表 2023年05月26日 0 点赞 0 评论 279 浏览 评分:0.0
编写题解 2006: 寻找奇整数 摘要:## 暴力查找 ```c++ #include int main() { int nums[] = { 3,7,5,13,25,45,78,23,8,33,9,19,28,41,5…… 题解列表 2023年05月26日 0 点赞 0 评论 247 浏览 评分:0.0
2001: 边长判断 摘要:## if判断 ```c++ #include using namespace std; int main() { int a,b,c; cin>>a>>b>>c; …… 题解列表 2023年05月26日 0 点赞 0 评论 188 浏览 评分:0.0
蓝桥杯2021年第十二届国赛真题-大写 摘要:## C++中的string ```c++ #include int main() { std::string A; std::getline(std::cin, A)…… 题解列表 2023年05月26日 0 点赞 0 评论 301 浏览 评分:0.0
不重复地输出数:双指针+qsort 摘要:### 快排+双指针去重 ```c++ #include #include using namespace std; int cmp(const void*a,const void*b) …… 题解列表 2023年05月26日 0 点赞 0 评论 210 浏览 评分:0.0