1536: 蓝桥杯算法提高VIP-最长单词 摘要:```cpp #include using namespace std; int main() { int t=0; string s,v; char a[101…… 题解列表 2023年01月10日 0 点赞 0 评论 735 浏览 评分:9.9
c++贪心+数学 摘要:```cpp #include using namespace std; #define ll long long int main() { ll n; cin>>n; …… 题解列表 2023年01月10日 1 点赞 0 评论 438 浏览 评分:9.9
2009: 第一个带类的C++程序 摘要:```cpp #include using namespace std; class Date { private: int year,month,day; …… 题解列表 2023年01月10日 0 点赞 0 评论 553 浏览 评分:9.9
3067: 大盗阿福 摘要:小心超时 ```cpp #include using namespace std; int w[100001],f[100001][2],n,T; int main() { io…… 题解列表 2023年01月10日 0 点赞 0 评论 490 浏览 评分:9.9
2864: 单词替换 摘要:```cpp #include #include using namespace std; int main() { int n=0; char s[101][101];…… 题解列表 2023年01月10日 0 点赞 0 评论 658 浏览 评分:9.9
编写题解 1202: 多输入输出练习1 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<malloc.h> int main() { int n; int j; j = 0; int…… 题解列表 2023年01月10日 0 点赞 0 评论 596 浏览 评分: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 评论 551 浏览 评分: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 评论 483 浏览 评分:9.9
[编程入门]第一个HelloWorld程序(题解)C语言代码 摘要:解题思路:这道题很简单,只需要用printf函数将Hello World输入到函数中即可例如:printf("Hello World\n");注意事项:区分大小写注意空格;号不能漏*号不能漏参考代码:…… 题解列表 2023年01月10日 0 点赞 0 评论 481 浏览 评分:9.9
2174Lake Counting 简单BFS(注释很详细) 摘要:解题思路: 1.经典的BFS/DFS问题. 2.与 第2171题:细胞 差不多,但是由于我那个题用的DFS,所以这个题就用BFS.多说一点:1.DFS的递归函数可以很简单地…… 题解列表 2023年01月10日 0 点赞 0 评论 486 浏览 评分:9.9