蓝桥杯算法训练VIP-最长字符串 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*; import java.math.*; public class Main{ @SuppressWarnings("re…… 题解列表 2018年11月05日 0 点赞 0 评论 355 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (C语言代码) 摘要:#include "stdafx.h"#include "string.h"int main(){ char s[5][100] = { 0 }; int i,max=0,len,flag; for …… 题解列表 2018年10月23日 0 点赞 0 评论 685 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C++代码) 摘要:本题直接用string 就可以了。 具体代码如下: #include using namespace std; int main() { int n=5,m=0; str…… 题解列表 2019年08月30日 0 点赞 0 评论 371 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include <stdio.h>#include <string.h>int main(){ int i,n,max=0; char a…… 题解列表 2018年08月19日 0 点赞 0 评论 612 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[] a…… 题解列表 2018年03月10日 1 点赞 0 评论 876 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 摘要:```cpp #include #include #include using namespace std; int main() { char str[5][100]; int …… 题解列表 2019年11月27日 0 点赞 0 评论 390 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 摘要:```c #include #include int main() { char a[100001],b[100001],d; while(~scanf("%s",a)) { …… 题解列表 2019年12月02日 0 点赞 0 评论 627 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 清晰简单 摘要: #include #include int main() { char arr[5][120] ; int i = 0 ; int maxlen…… 题解列表 2019年12月11日 0 点赞 0 评论 467 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { cha…… 题解列表 2020年02月05日 0 点赞 0 评论 340 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (C语言代码) 摘要:解题思路:结构体排序注意事项:参考代码:#include<iostream> #include<string> #include<algorithm> using namespace std; …… 题解列表 2018年03月09日 0 点赞 0 评论 832 浏览 评分:0.0