1644:最长字符串(使用结构体存储,扩展解法) 摘要:```cpp #include #include #include using namespace std; struct word { string w; in…… 题解列表 2024年10月04日 0 点赞 0 评论 91 浏览 评分:9.9
蓝桥杯算法训练VIP-最长字符串 (C++代码)只做最简单的思路! 摘要:```cpp #include using namespace std; int main(){ string s[5]; int len=0,p=0; for(int i=0;…… 题解列表 2020年02月19日 0 点赞 0 评论 647 浏览 评分:9.9
蓝桥杯算法训练VIP-最长字符串 (C++代码) 摘要:#include<iostream> using namespace std; int main(){ string a[5]; int m=0; int j=-1;…… 题解列表 2018年01月05日 3 点赞 1 评论 1184 浏览 评分:9.9
蓝桥杯算法训练VIP-最长字符串-题解(C++代码)-5行 摘要:=#include<bits/stdc++.h> using namespace std; int main() { string s; string k=""; while (ci…… 题解列表 2020年08月03日 0 点赞 0 评论 483 浏览 评分:9.9
蓝桥杯算法训练VIP-最长字符串-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ string s[5]; cin>>s[0]; int max=…… 题解列表 2020年04月07日 0 点赞 0 评论 578 浏览 评分:0.0
1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string m…… 题解列表 2024年07月13日 0 点赞 0 评论 98 浏览 评分:0.0
1644: 蓝桥杯算法训练VIP-最长字符串 摘要:```cpp #include using namespace std; typedef long long ll; int main() { string maxxstr; …… 题解列表 2024年07月13日 0 点赞 0 评论 93 浏览 评分:0.0
题解 1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx1=0; string maxx; for…… 题解列表 2024年07月13日 0 点赞 0 评论 109 浏览 评分:0.0
C# 蓝桥杯算法训练VIP-最长字符串-size 摘要:```cpp #include using namespace std; string s,ss; int main() { for(int i=0;i>s; if(…… 题解列表 2022年07月29日 0 点赞 0 评论 166 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 题解 摘要:解题思路:就直接输入字符串数组,用字符串长度打擂台,找到长度最大的字符串,输出。注意事项:要用字符串数组。参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2022年05月06日 0 点赞 0 评论 186 浏览 评分:0.0