蓝桥杯算法训练VIP-最长字符串-题解(Python代码) 摘要:利用python很方便,,,,先放到列表,再按条件排序,输出最大的值。 ```python l = [x for x in input().strip().split()] print(sort…… 题解列表 2020年02月14日 0 点赞 0 评论 361 浏览 评分:8.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 清晰简单 摘要: #include #include int main() { char arr[5][120] ; int i = 0 ; int maxlen…… 题解列表 2019年12月11日 0 点赞 0 评论 360 浏览 评分:0.0
WU-蓝桥杯算法训练VIP-最长字符串 (C++代码) 摘要:参考代码:#include<iostream> #include<vector> #include<algorithm> using namespace std; bool comp(st…… 题解列表 2018年01月21日 1 点赞 0 评论 600 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(Python代码) 摘要:解题思路:注意事项:参考代码:hst=list(map(str,input().split()))for i in range(0,5): for p in range(i+1,5): …… 题解列表 2020年11月24日 0 点赞 0 评论 286 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 题解 摘要:解题思路:就直接输入字符串数组,用字符串长度打擂台,找到长度最大的字符串,输出。注意事项:要用字符串数组。参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2022年05月06日 0 点赞 0 评论 133 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.math.*; public class Main{ @SuppressWarnings("re…… 题解列表 2018年11月05日 0 点赞 0 评论 308 浏览 评分: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-最长字符串 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2018年03月10日 1 点赞 0 评论 792 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C++代码) 摘要:``` #include #include using namespace std; struct strings_st{ string st; int sizes; };…… 题解列表 2020年06月22日 0 点赞 0 评论 280 浏览 评分:0.0
最长字符串 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<string.h>int main(){ char n[5][100]; int s=0; for(…… 题解列表 2021年12月12日 0 点赞 0 评论 134 浏览 评分:0.0