Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
37871 潘元熙 求绝对值 C++ Accepted 1 MS 268 KB 126 2022-08-26 19:30:18

Tests(2/2):


Code:

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