题解 1232: 查找最大元素

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

筛选

python直观解法

摘要:解题思路:主要用到一个index()函数,用于确定某个存在于列表中的元素的索引注意事项:无参考代码:results_s = []while True:    try:        st = inpu……

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

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

题解 1232: 查找最大元素

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

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>  #include<string.h>  int main()  {      char max,str[101];      int……

1232: 查找最大元素

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

查找最大元素 (Java代码)

摘要:解题思路:注意事项:参考代码:public class 查找最大元素 { public static void main(String[] args) { // TODO Auto-generate……