| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 140516 | 黄芃硕 | 求平方根 | C++ | Wrong Answer | 0 MS | 272 KB | 149 | 2025-12-15 19:02:12 |
#include<cmath> #include<iostream> #include<cstring> using namespace std; int main() { int n; cin>>n; cout<<sqrt(n); return 0 ; }
------Input------
0.81
------Answer-----
0.9
------Your output-----
0