Run ID:130146
提交时间:2025-09-07 17:26:13
#include<bits/stdc++.h> using namespace std; int main(){ int a[10],max=0,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; }