题解 1232: 查找最大元素

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1232: 查找最大元素

摘要:解题思路:注意事项:参考代码:while True: try: a=input() s=max(a) str='' for i in a:     if i!=s:   ……

题解 1232: 查找最大元素

摘要:参考代码:#include<stdio.h>#include<string.h>int main(){    char s[256];    while(scanf("%s",s)!=EOF)    ……

直接查找输出(Python)

摘要:while 1:    s=input()    if len(s)==0:        break    list1=list(s)    if len(list1)<101:        ma……

查找最大元素 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; char a[105]; int main()……

查找最大元素 (C语言代码)

摘要:解题思路:先求出最大字符,然后输出字符串时,再判断字符串中的字符是否是最大字符,是则输出(max)即可。注意事项:参考代码:#include <stdio.h> int main() { ch……

查找最大元素 (C++代码)水一下

摘要:  水一下,其实可以更多利用字符串比较的相关内容的...题目考的太浅没办法参考代码:#include<bits/stdc++.h> using namespace std; int main(){……