题解 1644: 蓝桥杯算法训练VIP-最长字符串

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

蓝桥杯算法训练VIP-最长字符串 题解

摘要:解题思路:就直接输入字符串数组,用字符串长度打擂台,找到长度最大的字符串,输出。注意事项:要用字符串数组。参考代码:#include<bits/stdc++.h>using namespace std……

解最长字符串

摘要:解题思路:注意事项:参考代码:a=input()m=a.split()max=0maxi=0for i in range(0,len(m)):    if max<len(m[i]):        ……

最长字符串

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){   char n[5][100];    int s=0;    for(……

python解出来了

摘要:解题思路:注意事项:参考代码:ls=[]ls = list(input().strip().split())z = len(ls[0])b = 0for i in ls:    if len(i) >……