Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
29464 唐心 求绝对值II C++ Accepted 3 MS 832 KB 131 2022-07-11 09:05:55

Tests(2/2):


Code:

#include<iostream> #include<cmath> using namespace std; int main(){ double a; cin>>a; cout<<fabs(a)<<endl; return 0; }