找出最长的字符串来 (C语言代码) 摘要:解题思路:输出最长的用strlen()函数算出长度。一个个比较。注意事项:c语言中,没有字符串类型,用字符数组处理字符串。参考代码:#include<stdio.h>#include<string.h…… 题解列表 2017年10月25日 2 点赞 0 评论 2067 浏览 评分:7.3
找出最长的字符串来 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h> int main () { char str[5][100],long…… 题解列表 2018年12月23日 4 点赞 0 评论 950 浏览 评分:9.9
找出最长的字符串来-题解(C++代码) 摘要:##### 原题链接:[找出最长的字符串来](https://www.dotcpp.com/oj/problem.php?id=1782 "找出最长的字符串来") ##### 解题思路: …… 题解列表 2019年07月16日 0 点赞 0 评论 1115 浏览 评分:0.0
找出最长的字符串来-题解(C++代码) 摘要:解题思路: while循环5次,设计以max,maxstr就完了 参考代码: ```cpp #include #include using namespace std; /* …… 题解列表 2020年01月02日 0 点赞 0 评论 835 浏览 评分:0.0
找出最长的字符串来-题解(C语言代码)--使用scanf()的进阶用法 摘要:```c #include #include int main() { char str[5][100]; char l[100]; int i; …… 题解列表 2020年01月05日 0 点赞 0 评论 779 浏览 评分:9.9
找出最长的字符串来 (C++代码)只做最简单的思路! 摘要: ````cpp #include using namespace std; int main(){ string s1,s2,s3,s4,s5; cin>>s1>>s2>>s…… 题解列表 2020年02月16日 0 点赞 0 评论 661 浏览 评分:9.9
找出最长的字符串来-题解(Java代码) 摘要: Scanner sc=new Scanner(System.in); String str=sc.nextLine(); String str1=sc.nextLine(); S…… 题解列表 2020年02月25日 0 点赞 0 评论 377 浏览 评分:0.0
c++特性解决问题 摘要:```cpp #include using namespace std; int main(){ int max_len = -1, index = 0; vectors; …… 题解列表 2022年03月14日 0 点赞 0 评论 174 浏览 评分:0.0
找出最长的字符串来(C++代码简短) 摘要:#include<iostream> using namespace std; #include<cstring> #include<algorithm> int main() { …… 题解列表 2022年10月31日 0 点赞 0 评论 114 浏览 评分:9.9
找出最长的字符串来代码简洁,对新手友好,一看就懂 摘要:```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 评论 144 浏览 评分:6.0