| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 128324 | 吴雨卓 | 找最大的数 | C++ | Compile Error | 0 MS | 0 KB | 209 | 2025-08-15 08:39:23 |
#include<bits/stdc++.h> using namespace std; int main(){ int n[101],max=0; for(int i=1;i<=10;i++){ cin>>n[i]; if(n[i]>max){ max=n[i]; }for(int i=1;i<=10;i++){ if(n[i]==max){ cout<<i; } } }
Main.cc: In function 'int main()': Main.cc:14:1: error: expected '}' at end of input } ^