题解 3020: 最大数位置

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

筛选

3020: 最大数位置

摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;typedeflonglongll;constllN=1e7;lla[N];intma……

利用指针遍历得到答案

摘要:解题思路:循环输入数据,利用指针遍历,然后寻找最大值,记录位置注意事项:参考代码:#include<iostream>usingnamespacestd;intmain(){&nb……

最大数位置

摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intn,a[100],i;intmax;int&nbsp;max_position;scanf……

index查找列表下标

摘要:解题思路:注意事项:参考代码:n=int(input())a=list(map(int,input().split()))print(a.index(max(a))+1)……

题解 3020: 最大数位置

摘要:解题思路:注意事项:参考代码:#include<iostream>usingnamespacestd;typedeflonglongll;constllN=1e7;lla[N];intma……

3020: 最大数位置

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;inta[100000];intmain(){&nbsp;&……

题解 3020: 最大数位置

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;typedeflonglongll;intmain(){&nbsp;……