提交时间:2025-12-26 14:29:29

运行 ID: 77580

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