Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91348 | 谢绍澜 | 求平方根 | C++ | Output Limit Exceeded | 0 MS | 280 KB | 207 | 2024-09-21 16:30:54 |
#include<iostream> #include<cmath> using namespace std; double a(double x){ return sqrt(x); } int main(){ double n; for(int i=0;;i++){ cin>>n; cout<<a(n)<<" "; } }