1782: 找出最长的字符串来 摘要:注意事项:字符串相等不能用'=',要用strcpy(x,y),将数组y赋给x;计算数组长度用strlen()!!都需要声名 <string.h>!!参考代码:#include<stdi…… 题解列表 2024年12月21日 1 点赞 0 评论 107 浏览 评分:10.0
找出最长的字符串来 (C++代码)只做最简单的思路! 摘要: ````cpp #include using namespace std; int main(){ string s1,s2,s3,s4,s5; cin>>s1>>s2>>s…… 题解列表 2020年02月16日 0 点赞 0 评论 640 浏览 评分:9.9
找出最长的字符串来-题解(C语言代码)--使用scanf()的进阶用法 摘要:```c #include #include int main() { char str[5][100]; char l[100]; int i; …… 题解列表 2020年01月05日 0 点赞 0 评论 755 浏览 评分:9.9
找出最长的字符串来(C++代码简短) 摘要:#include<iostream> using namespace std; #include<cstring> #include<algorithm> int main() { …… 题解列表 2022年10月31日 0 点赞 0 评论 111 浏览 评分:9.9
找出最长的字符串来 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> int main () { char str[5][100],long…… 题解列表 2018年12月23日 4 点赞 0 评论 937 浏览 评分:9.9
1782—————找出最长的字符串来 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2023年02月01日 0 点赞 0 评论 166 浏览 评分:8.0
找出最长的字符串来 (C语言代码) 摘要:解题思路:输出最长的用strlen()函数算出长度。一个个比较。注意事项:c语言中,没有字符串类型,用字符数组处理字符串。参考代码:#include<stdio.h>#include<string.h…… 题解列表 2017年10月25日 2 点赞 0 评论 2051 浏览 评分:7.3
新手一看就会的代码——找出最长的字符串来 摘要:解题思路:输入多个字符串用gets,长度用strlen,找出五个数中的最大值容易,怎么把对应的字符串输出呢?还是得用数组,所以用一个二维数组。注意事项:注意max要存起来,不然下次max不变。参考代码…… 题解列表 2023年03月05日 0 点赞 0 评论 101 浏览 评分: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 评论 138 浏览 评分:6.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