Run ID:128332

提交时间:2025-08-15 08:56:02

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