| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 137561 | Kevin | 求平方根 | C++ | Compile Error | 0 MS | 0 KB | 117 | 2025-11-19 19:40:33 |
#include<bits/stdc++.h> using namespace std; int main() { double n; cin>>n; cout<<sqrt(n);0 return 0; }
Main.cc: In function 'int main()':
Main.cc:8:2: error: expected ';' before 'return'
return 0;
^
Main.cc:8:10: warning: statement has no effect [-Wunused-value]
return 0;
^