Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92464 | 梁敖铭 | 求平方根 | C++ | Wrong Answer | 1 MS | 272 KB | 133 | 2024-10-04 21:19:44 |
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; double r = sqrt(n); cout << r << endl; }
------Input------
0.81
------Answer-----
0.9
------Your output-----
0