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
最长字符串 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ char n[5][100]; int s=0; for(…… 题解列表 2021年12月12日 0 点赞 0 评论 173 浏览 评分: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 评论 119 浏览 评分:0.0
蓝桥杯T1644题解:-最长字符串 whjava 2022-3-20 摘要:```java import java.util.Scanner; /* 字符串可是比赛经常出的问题,那么给大家出一个题, 输入五个字符串,输出5个字符串当中最长的字符串。每个字符串…… 题解列表 2022年03月20日 0 点赞 0 评论 294 浏览 评分:0.0
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 评论 187 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 题解 摘要:解题思路:就直接输入字符串数组,用字符串长度打擂台,找到长度最大的字符串,输出。注意事项:要用字符串数组。参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2022年05月06日 0 点赞 0 评论 186 浏览 评分: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 评论 191 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 摘要:```c #include #include int main() { char a[100001],b[100001],d; while(~scanf("%s",a)) { …… 题解列表 2019年12月02日 0 点赞 0 评论 626 浏览 评分:0.0
WU-蓝桥杯算法训练VIP-最长字符串 (C++代码) 摘要:参考代码:#include<iostream> #include<vector> #include<algorithm> using namespace std; bool comp(st…… 题解列表 2018年01月21日 1 点赞 0 评论 636 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (C语言代码) 摘要:解题思路:结构体排序注意事项:参考代码:#include<iostream> #include<string> #include<algorithm> using namespace std; …… 题解列表 2018年03月09日 0 点赞 0 评论 831 浏览 评分:0.0