题解 1232: 查找最大元素

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

筛选

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

摘要:解题思路:1.查找最大元素。2.插入字符串(max)。根据题目要求,我们可以将本程序分为几个部分,利用函数解决每一步的问题: #include #include ……

1232: 查找最大元素

摘要:```cpp #include #include using namespace std; int main() { string str; while(cin>>str……

python直观解法

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

查找最大元素

摘要:解题思路:自己看吧!垃圾题目,花了我那么长时间调试。注意事项:参考代码:#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)    ……