题解 1232: 查找最大元素

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

筛选

python直观解法

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

1232: 查找最大元素

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

直接查找输出(Python)

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