mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-12-24 18:52:02 +00:00
B2022 输出保留 12 位小数的浮点数
R56994910
This commit is contained in:
parent
76fb2474b0
commit
92cfd7304e
10
Luogu/problem/B2022/B2022.cpp
Normal file
10
Luogu/problem/B2022/B2022.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
double a;
|
||||
cin >> a;
|
||||
cout << fixed << setprecision(12) << a << endl;
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user