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