蓝桥杯算法训练VIP-最长字符串 题解 摘要:解题思路:就直接输入字符串数组,用字符串长度打擂台,找到长度最大的字符串,输出。注意事项:要用字符串数组。参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2022年05月06日 0 点赞 0 评论 133 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scann…… 题解列表 2021年01月11日 0 点赞 0 评论 183 浏览 评分:0.0
1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string m…… 题解列表 2024年07月13日 0 点赞 0 评论 52 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.math.*; public class Main{ @SuppressWarnings("re…… 题解列表 2018年11月05日 0 点赞 0 评论 308 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) {…… 题解列表 2020年02月20日 0 点赞 0 评论 202 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C++代码) 摘要:``` #include #include using namespace std; struct strings_st{ string st; int sizes; };…… 题解列表 2020年06月22日 0 点赞 0 评论 280 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (C语言代码) 摘要:解题思路:结构体排序注意事项:参考代码:#include<iostream> #include<string> #include<algorithm> using namespace std; …… 题解列表 2018年03月09日 0 点赞 0 评论 684 浏览 评分: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-最长字符串-题解(C语言代码) 摘要:```c #include #include int main() { char a[100001],b[100001],d; while(~scanf("%s",a)) { …… 题解列表 2019年12月02日 0 点赞 0 评论 533 浏览 评分: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