1782: 找出最长的字符串来 摘要:注意事项:字符串相等不能用'=',要用strcpy(x,y),将数组y赋给x;计算数组长度用strlen()!!都需要声名 <string.h>!!参考代码:#include<stdi…… 题解列表 2024年12月21日 1 点赞 0 评论 107 浏览 评分:10.0
比较繁琐的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,p=0; char a[5][1000]; i…… 题解列表 2024年12月08日 0 点赞 0 评论 31 浏览 评分:0.0
编写题解 1782: 找出最长的字符串来 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char strings[5][101]; /…… 题解列表 2024年04月08日 0 点赞 0 评论 129 浏览 评分:0.0
找出最长的字符串来 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void lang(char *x1,char *x2,char *x3,char *x4,char…… 题解列表 2024年03月20日 0 点赞 0 评论 110 浏览 评分:2.0
找出最长的字符串来(C语言) 摘要:参考代码: ```c #include #include int main() { char str[5][100]; int len[5]={0}; int i=0; fo…… 题解列表 2023年10月27日 0 点赞 0 评论 210 浏览 评分:0.0
新手一看就会的代码——找出最长的字符串来 摘要:解题思路:输入多个字符串用gets,长度用strlen,找出五个数中的最大值容易,怎么把对应的字符串输出呢?还是得用数组,所以用一个二维数组。注意事项:注意max要存起来,不然下次max不变。参考代码…… 题解列表 2023年03月05日 0 点赞 0 评论 102 浏览 评分:6.0
找出最长的字符串来代码简洁,对新手友好,一看就懂 摘要:```c #include #include int main() { char p[5][100]; int i,o[5],max,k; for (i = 0; i < 5; i…… 题解列表 2022年11月09日 0 点赞 1 评论 140 浏览 评分:6.0
c++特性解决问题 摘要:```cpp #include using namespace std; int main(){ int max_len = -1, index = 0; vectors; …… 题解列表 2022年03月14日 0 点赞 0 评论 171 浏览 评分:0.0
找出最长的字符串来-题解(C语言代码)--使用scanf()的进阶用法 摘要:```c #include #include int main() { char str[5][100]; char l[100]; int i; …… 题解列表 2020年01月05日 0 点赞 0 评论 756 浏览 评分:9.9
找出最长的字符串来 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> int main () { char str[5][100],long…… 题解列表 2018年12月23日 4 点赞 0 评论 938 浏览 评分:9.9