From 6ed827d570aaef4e249466346314f1f2b0521e9b Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Thu, 17 Mar 2022 19:45:08 +0800 Subject: [PATCH] =?UTF-8?q?B2024=20=E8=BE=93=E5=87=BA=E6=B5=AE=E7=82=B9?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit R71616151 --- Luogu/B2024/B2024.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Luogu/B2024/B2024.cpp diff --git a/Luogu/B2024/B2024.cpp b/Luogu/B2024/B2024.cpp new file mode 100644 index 00000000..8e7f4bd1 --- /dev/null +++ b/Luogu/B2024/B2024.cpp @@ -0,0 +1,14 @@ +#include + +double x; + +int main() { + scanf("%lf", &x); + printf( + "%f\n" + "%.5f\n" + "%e\n" + "%g\n", + x, x, x, x); + return 0; +}