小南解题-最长字符串---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
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
蓝桥杯算法训练VIP-最长字符串 题解 摘要:解题思路:就直接输入字符串数组,用字符串长度打擂台,找到长度最大的字符串,输出。注意事项:要用字符串数组。参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2022年05月06日 0 点赞 0 评论 133 浏览 评分: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 评论 141 浏览 评分:0.0
蓝桥杯T1644题解:-最长字符串 whjava 2022-3-20 摘要:```java import java.util.Scanner; /* 字符串可是比赛经常出的问题,那么给大家出一个题, 输入五个字符串,输出5个字符串当中最长的字符串。每个字符串…… 题解列表 2022年03月20日 0 点赞 0 评论 241 浏览 评分:0.0
1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:一直将大的字符串复制到另一个数组内,直到文件结束参考代码:#include <stdio.h> #include <string.h> int main () { int i;…… 题解列表 2022年01月07日 0 点赞 0 评论 200 浏览 评分:10.0
解最长字符串 摘要:解题思路:注意事项:参考代码:a=input()m=a.split()max=0maxi=0for i in range(0,len(m)): if max<len(m[i]): …… 题解列表 2021年12月26日 0 点赞 0 评论 166 浏览 评分:9.9
最长字符串 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ char n[5][100]; int s=0; for(…… 题解列表 2021年12月12日 0 点赞 0 评论 134 浏览 评分:0.0
python解出来了 摘要:解题思路:注意事项:参考代码:ls=[]ls = list(input().strip().split())z = len(ls[0])b = 0for i in ls: if len(i) >…… 题解列表 2021年04月17日 0 点赞 0 评论 139 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Text { public static void main(String args[]…… 题解列表 2021年03月19日 0 点赞 0 评论 164 浏览 评分:9.9