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

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

筛选

蓝桥杯算法训练VIP-最长字符串-题解(Java代码)

摘要:解题思路:/*字符串可是比赛经常出的问题,那么给大家出一个题, 输入五个字符串,输出5个字符串当中最长的字符串。 每个字符串长度在100以内,且全为小写字母*/注意事项:参考代码:import j……

python解出来了

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

最长字符串

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

解最长字符串

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