Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
80095 李雨昊 求平方根 C++ Accepted 1 MS 276 KB 150 2024-07-11 11:05:08

Tests(2/2):


Code:

#include<iostream> #include<cmath> using namespace std; int main() { double x; cin>>x; double b; b = sqrt(x); cout<<b; return 0; }