蓝桥杯算法训练VIP-最长字符串 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] arg…… 题解列表 2018年04月15日 0 点赞 0 评论 541 浏览 评分: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++代码) 摘要:```cpp #include using namespace std; int main(){ string s[5]; cin>>s[0]; int max=…… 题解列表 2020年04月07日 0 点赞 0 评论 444 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(Python代码) 摘要:利用python很方便,,,,先放到列表,再按条件排序,输出最大的值。 ```python l = [x for x in input().strip().split()] print(sort…… 题解列表 2020年02月14日 0 点赞 0 评论 361 浏览 评分:8.0
可AC 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> #include<string.h> int main() { int num[5], i, max =…… 题解列表 2018年07月29日 1 点赞 0 评论 1083 浏览 评分:8.5
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 摘要:#include<stdio.h>#include<string.h>int main(){ char a[1000]; int n,i,j,max=0,count=0; gets(a); n=str…… 题解列表 2020年12月07日 0 点赞 0 评论 564 浏览 评分:8.7
蓝桥杯算法训练VIP-最长字符串-题解(Python代码) 摘要:```python while True: try: a = input().split() max_num = 0 max_str …… 题解列表 2020年02月07日 0 点赞 0 评论 541 浏览 评分:9.9
蓝桥杯算法训练VIP-最长字符串-题解(C++代码)-5行 摘要:=#include<bits/stdc++.h> using namespace std; int main() { string s; string k=""; while (ci…… 题解列表 2020年08月03日 0 点赞 0 评论 363 浏览 评分:9.9
蓝桥杯算法训练VIP-最长字符串 (C++代码)只做最简单的思路! 摘要:```cpp #include using namespace std; int main(){ string s[5]; int len=0,p=0; for(int i=0;…… 题解列表 2020年02月19日 0 点赞 0 评论 584 浏览 评分:9.9
最长字符串(c语言代码 简单易理解 有详细注释) 摘要:```c #include #include int main() { char str[500] = { 0 };//用来存放输入的字符串 gets(str); int …… 题解列表 2023年04月21日 0 点赞 0 评论 221 浏览 评分:9.9