题解 1232: 查找最大元素

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

筛选

查找最大元素

摘要:解题思路:自己看吧!垃圾题目,花了我那么长时间调试。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[101]; c……

1232: 查找最大元素

摘要:解题思路:注意事项:参考代码:while True: try: a=input() s=max(a) str=&#39;&#39; 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……

python直观解法

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

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

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