1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:ls=list(map(str,input().split())) ind=0 ln=-1 for i in range(len(ls)): if len…… 题解列表 2022年04月26日 0 点赞 0 评论 141 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 题解 摘要:解题思路:就直接输入字符串数组,用字符串长度打擂台,找到长度最大的字符串,输出。注意事项:要用字符串数组。参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2022年05月06日 0 点赞 0 评论 133 浏览 评分: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 评论 136 浏览 评分:0.0
小南解题-最长字符串---72ms 摘要:a,b,c,d,e=map(str,input().split())k=max(len(a),len(b),len(c),len(d),len(e))if k==len(a): print(a…… 题解列表 2022年08月26日 0 点赞 0 评论 137 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串(C语言) 摘要:#include <stdio.h> #include <string.h> int main() { int i; int n = 0; char p[100] …… 题解列表 2023年01月06日 0 点赞 0 评论 86 浏览 评分:0.0
python最长字符串 带解析 摘要:s=list(input().split()) #以列表方式存储Max=len(s[0]) #记录字符串最大长度 首先记录第一个n=[] #记录字符串最大长度对应字符的下标n.append(0) #首…… 题解列表 2023年02月19日 0 点赞 0 评论 93 浏览 评分:9.9
最长字符串(c语言代码 简单易理解 有详细注释) 摘要:```c #include #include int main() { char str[500] = { 0 };//用来存放输入的字符串 gets(str); int …… 题解列表 2023年04月21日 0 点赞 0 评论 221 浏览 评分:9.9
无聊的星期六 摘要:z=input() z=z.split() max=0 for i in range(len(z)): if len(z[max])<len(z[i]): max=i…… 题解列表 2024年04月14日 0 点赞 0 评论 141 浏览 评分:0.0
题解 1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx1=0; string maxx; for…… 题解列表 2024年07月13日 0 点赞 0 评论 49 浏览 评分:0.0
1644: 蓝桥杯算法训练VIP-最长字符串 摘要:```cpp #include using namespace std; typedef long long ll; int main() { string maxxstr; …… 题解列表 2024年07月13日 0 点赞 0 评论 47 浏览 评分:0.0