| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151549 | zxy | 13求7个数的最大值 | C++ | Compile Error | 0 MS | 0 KB | 190 | 2026-04-13 17:25:37 |
#include <iostream> using namespace std; int main(){ int a; int max=-123456789; for(int i=1;i<=7;i++){ cin>>a; if(max<a){ max=a; } cout<<max*max; }
Main.cc: In function 'int main()': Main.cc:14:1: error: expected '}' at end of input } ^