Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87384 Kevin 【基础题】绝对值 C++ Accepted 1 MS 272 KB 126 2024-08-09 15:21:06

Tests(4/4):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double a; cin>>a; printf("%.2lf",abs(a)); return 0; }