Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
42165 姜皓轩 求绝对值 C++ Accepted 1 MS 272 KB 110 2022-11-13 10:40:59

Tests(2/2):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; cout<<abs(n); return 0; }