Run ID:152363

提交时间:2026-04-25 16:21:08

#include<bits/stdc++.h> using namespace std; int main(){ int a[10]={ },max=-1,w; for(int i=0;i<10;i++){ cin>>a[i]; } for(int i=0;i<10;i++){ if(max<a[i]){ max=a[i]; w=i; } } cout<<w+1; return 0; }