Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
5758 |
高振轩 |
求平方根 |
C++ |
Wrong Answer |
0 MS |
272 KB |
97 |
2024-12-14 15:39:16 |
Tests(1/2):
Code:
#include<bits/stdc++.h>
using namespace std;
int main(){
int a;
cin>>a;
cout<<sqrt(a);
}
Run Info:
------Input------
0.81
------Answer-----
0.9
------Your output-----
0