1782基础解法(Python) 摘要:解题思路:一个更通用的解法注意事项:学习字典的元素添加方式和对字典进行简单排序的方法参考代码:import sysdic = {}for data in sys.stdin : dic[data…… 题解列表 2023年05月30日 0 点赞 0 评论 96 浏览 评分:0.0
找出最长的字符串来-题解(C++代码) 摘要:##### 原题链接:[找出最长的字符串来](https://www.dotcpp.com/oj/problem.php?id=1782 "找出最长的字符串来") ##### 解题思路: …… 题解列表 2019年07月16日 0 点赞 0 评论 1115 浏览 评分:0.0
找出最长的字符串来-题解(Java代码) 摘要: Scanner sc=new Scanner(System.in); String str=sc.nextLine(); String str1=sc.nextLine(); S…… 题解列表 2020年02月25日 0 点赞 0 评论 377 浏览 评分:0.0
小白,看看就行,不动脑袋 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string s, s2; …… 题解列表 2024年11月13日 0 点赞 0 评论 46 浏览 评分:0.0
找出最长的字符串来(C语言) 摘要:参考代码: ```c #include #include int main() { char str[5][100]; int len[5]={0}; int i=0; fo…… 题解列表 2023年10月27日 0 点赞 0 评论 220 浏览 评分:0.0
找出最长的字符串来-题解(C++代码) 摘要:解题思路: while循环5次,设计以max,maxstr就完了 参考代码: ```cpp #include #include using namespace std; /* …… 题解列表 2020年01月02日 0 点赞 0 评论 835 浏览 评分:0.0
编写题解 1782: 找出最长的字符串来 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char strings[5][101]; /…… 题解列表 2024年04月08日 0 点赞 0 评论 145 浏览 评分:0.0
找出最长的字符串来 摘要:解题思路:1、将输入的五个字符串放入一个列表2、将五个字符串的长度放入另一个列表求最值3、根据串长等于最大值输出对应的字符串注意事项:参考代码:L = []L1 = []for i in range(…… 题解列表 2023年01月07日 0 点赞 0 评论 106 浏览 评分: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
比较繁琐的解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,p=0; char a[5][1000]; i…… 题解列表 2024年12月08日 0 点赞 0 评论 41 浏览 评分:0.0