Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99321 | 罗睿妍 | 02长方形的面积 | C++ | Compile Error | 0 MS | 0 KB | 127 | 2024-11-25 17:59:26 |
#include <iostream> using namespace std; int main() { int x,y; cin>>x>>y; cout<<x*y<<endl; retern 0; }
Main.cc: In function 'int main()': Main.cc:8:5: error: 'retern' was not declared in this scope retern 0; ^