提交时间:2025-12-19 15:36:52

运行 ID: 76603

#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; }