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
小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string s, s2; …… 题解列表 2024年11月13日 0 点赞 0 评论 39 浏览 评分:0.0
编写题解 1782: 找出最长的字符串来 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char strings[5][101]; /…… 题解列表 2024年04月08日 0 点赞 0 评论 128 浏览 评分: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 评论 208 浏览 评分:0.0
1782基础解法(Python) 摘要:解题思路:一个更通用的解法注意事项:学习字典的元素添加方式和对字典进行简单排序的方法参考代码:import sysdic = {}for data in sys.stdin : dic[data…… 题解列表 2023年05月30日 0 点赞 0 评论 88 浏览 评分:0.0
新手一看就会的代码——找出最长的字符串来 摘要:解题思路:输入多个字符串用gets,长度用strlen,找出五个数中的最大值容易,怎么把对应的字符串输出呢?还是得用数组,所以用一个二维数组。注意事项:注意max要存起来,不然下次max不变。参考代码…… 题解列表 2023年03月05日 0 点赞 0 评论 101 浏览 评分:6.0
编写题解 1782: 找出最长的字符串来(python) 摘要:解题思路:注意事项:参考代码:if __name__ == '__main__': c = '' length = 0 for i in range(…… 题解列表 2023年02月13日 0 点赞 0 评论 87 浏览 评分:0.0
1782—————找出最长的字符串来 摘要: import java.util.Scanner; public class Main { public static void main(String[] …… 题解列表 2023年02月01日 0 点赞 0 评论 166 浏览 评分:8.0