提交时间:2023-12-04 19:05:15

运行 ID: 33005

#include <bits/stdc++.h> using namespace std; int main() { double x; cin >> x; if(x < 0) x = -1 * x; cout << setprecision(2) << x; return 0; }