Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
108550 6张轶涵 找最大的数 C++ Accepted 0 MS 268 KB 192 2025-01-20 19:22:49

Tests(10/10):


Code:

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