| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 127270 | 陈冠樾 | 输出九九乘法表 | C++ | Compile Error | 0 MS | 0 KB | 200 | 2025-07-26 15:22:26 |
#include<bits/stdc++.h> using namespace std; int main() { for(int i=1;i<=9;i++){ for(int j=1;j<=i;j++){ cout<<j<<"*"<<i<<"="<<i*j<<" "; } cout << endl; } return 0;
Main.cc: In function 'int main()':
Main.cc:12:10: error: expected '}' at end of input
return 0;
^