题解 3020: 最大数位置

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

筛选

3020: 最大数位置

摘要:``` #include using namespace std; int a[100000],n,maxx,num; int main(){ cin>>n; maxx = -1; ……

3020: 最大数位置

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[100000];int main(){    int n,maxx=1,……

3020: 最大数位置

摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a,sum;int c[1000000];int main(){    cin >>a;   ……

java最大数的位置

摘要:解题思路:注意事项:参考代码:package lianxi;import java.util.Scanner;public class 最大数位置 {    public static void ma……

最大数位置

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,a[100],i; int max; int  max_position; scanf("%d",……

编写题解 3020: 最大数位置

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){   int n,a[1001],maxx=1;   cin>>n;  ……