Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
5762 | 李宇轩 | 求平方根 | C++ | Wrong Answer | 0 MS | 264 KB | 111 | 2024-12-14 15:43:11 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; cout<<sqrt(a); return 0; }
------Input------
0.81
------Answer-----
0.9
------Your output-----
0