1644: 蓝桥杯算法训练VIP-最长字符串 摘要:解题思路:一直将大的字符串复制到另一个数组内,直到文件结束参考代码:#include <stdio.h> #include <string.h> int main () { int i;…… 题解列表 2022年01月07日 0 点赞 0 评论 200 浏览 评分:10.0
蓝桥杯算法训练VIP-最长字符串 (C语言代码) 摘要:解题思路:输入一个单词判断一次当前所输入的字符串和储存的最长的大小注意事项:getchar()函数放置的位置参考代码:#include<stdio.h> #include<string.h> in…… 题解列表 2019年03月20日 0 点赞 0 评论 784 浏览 评分:9.9
最长字符串(c语言代码 简单易理解 有详细注释) 摘要:```c #include #include int main() { char str[500] = { 0 };//用来存放输入的字符串 gets(str); int …… 题解列表 2023年04月21日 0 点赞 0 评论 221 浏览 评分:9.9
蓝桥杯算法训练VIP-最长字符串-题解(C语言代码)AC代码 值得参考 摘要: #include #include #define N 5 int main() { int i,j,k; char x[N][…… 题解列表 2019年11月24日 0 点赞 0 评论 883 浏览 评分:9.9
蓝桥杯算法训练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
可AC 摘要:解题思路: 注意事项: 参考代码: #include<stdio.h> #include<string.h> int main() { int num[5], i, max =…… 题解列表 2018年07月29日 1 点赞 0 评论 1083 浏览 评分:8.5
结构体数组解决(c语言代码) 摘要:```c #include #include #define MAX 101 typedef struct { // 定义一个结构体 char s[MAX];…… 题解列表 2024年08月23日 0 点赞 0 评论 65 浏览 评分: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语言代码) 摘要:```c #include #include int main() { char a[100001],b[100001],d; while(~scanf("%s",a)) { …… 题解列表 2019年12月02日 0 点赞 0 评论 533 浏览 评分: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