找出最长的字符串来(C语言)
摘要:参考代码:
```c
#include
#include
int main()
{
char str[5][100];
int len[5]={0};
int i=0;
fo……
编写题解 1782: 找出最长的字符串来
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
int main()
{
char strings[5][101]; /……
找出最长的字符串来-题解(C++代码)
摘要:##### 原题链接:[找出最长的字符串来](https://www.dotcpp.com/oj/problem.php?id=1782 "找出最长的字符串来")
##### 解题思路:
……
小白,看看就行,不动脑袋
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string s, s2; ……
编写题解 1782: 找出最长的字符串来(python)
摘要:解题思路:注意事项:参考代码:if __name__ == '__main__': c = '' length = 0 for i in range(……
1782基础解法(Python)
摘要:解题思路:一个更通用的解法注意事项:学习字典的元素添加方式和对字典进行简单排序的方法参考代码:import sysdic = {}for data in sys.stdin : dic[data……
找出最长的字符串来-题解(Java代码)
摘要: Scanner sc=new Scanner(System.in);
String str=sc.nextLine();
String str1=sc.nextLine();
S……
找出最长的字符串来-题解(C++代码)
摘要:解题思路: while循环5次,设计以max,maxstr就完了
参考代码:
```cpp
#include
#include
using namespace std;
/*
……