结构体数组解决(c语言代码) 摘要:```c #include #include #define MAX 101 typedef struct { // 定义一个结构体 char s[MAX];…… 题解列表 2024年08月23日 0 点赞 0 评论 65 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 清晰简单 摘要: #include #include int main() { char arr[5][120] ; int i = 0 ; int maxlen…… 题解列表 2019年12月11日 0 点赞 0 评论 360 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 摘要:思路:接收五个字符串,分别计算字符串长度,长度大于max,max的值更新一次,并更新下标值。 ``` #include #include int main() { char a[10…… 题解列表 2020年02月19日 0 点赞 0 评论 336 浏览 评分: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
蓝桥杯算法训练VIP-最长字符串-题解(Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Scann…… 题解列表 2021年01月11日 0 点赞 0 评论 183 浏览 评分: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 评论 601 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串 (C语言代码)数组和指针的灵活运用,相互切换! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){char str1[102],str2[102],str3[102],str4…… 题解列表 2019年05月23日 0 点赞 0 评论 364 浏览 评分:0.0
比较繁琐的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,p=0; char a[150],b[150],…… 题解列表 2024年12月08日 0 点赞 0 评论 47 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { cha…… 题解列表 2020年02月05日 0 点赞 0 评论 300 浏览 评分:0.0
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码) 摘要:```cpp #include #include #include using namespace std; int main() { char str[5][100]; int …… 题解列表 2019年11月27日 0 点赞 0 评论 326 浏览 评分:0.0