2009: 第一个带类的C++程序 摘要:```cpp #include using namespace std; class Date { private: int year,month,day; …… 题解列表 2023年01月10日 0 点赞 0 评论 549 浏览 评分:9.9
3067: 大盗阿福 摘要:小心超时 ```cpp #include using namespace std; int w[100001],f[100001][2],n,T; int main() { io…… 题解列表 2023年01月10日 0 点赞 0 评论 486 浏览 评分:9.9
2864: 单词替换 摘要:```cpp #include #include using namespace std; int main() { int n=0; char s[101][101];…… 题解列表 2023年01月10日 0 点赞 0 评论 655 浏览 评分:9.9
编写题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> int main() { int n; int j; j = 0; int…… 题解列表 2023年01月10日 0 点赞 0 评论 589 浏览 评分:9.9
2804: 与指定数字相同的数的个数 摘要:```cpp #include using namespace std; int main() { int n,m,a[101],s=0; cin>>n>>m; …… 题解列表 2023年01月10日 0 点赞 0 评论 547 浏览 评分:9.9
2831: 画矩形 摘要:```cpp #include using namespace std; int main() { int a,b,d; char c; cin>>a>>b>>c…… 题解列表 2023年01月10日 0 点赞 0 评论 480 浏览 评分:9.9
[编程入门]第一个HelloWorld程序(题解)C语言代码 摘要:解题思路:这道题很简单,只需要用printf函数将Hello World输入到函数中即可例如:printf("Hello World\n");注意事项:区分大小写注意空格;号不能漏*号不能漏参考代码:…… 题解列表 2023年01月10日 0 点赞 0 评论 479 浏览 评分:9.9
2174Lake Counting 简单BFS(注释很详细) 摘要:解题思路: 1.经典的BFS/DFS问题. 2.与 第2171题:细胞 差不多,但是由于我那个题用的DFS,所以这个题就用BFS.多说一点:1.DFS的递归函数可以很简单地…… 题解列表 2023年01月10日 0 点赞 0 评论 481 浏览 评分:9.9
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码)超简洁 摘要:解题思路:活用replace方法,将元素的增加和删除都转成元素的替换来实现;转换元素的查找,将查找最后一个元素转换成逆序后查找第一个元素;注意事项:这个网站的Python编译器版本过低,不然可以使用r…… 题解列表 2023年01月10日 0 点赞 0 评论 441 浏览 评分:9.9
2836: 数组逆序重放 摘要:```cpp #include using namespace std; int main() { int n,a[101]; cin>>n; for(int i=0;…… 题解列表 2023年01月11日 0 点赞 1 评论 809 浏览 评分:9.9