0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 03:25:24 +00:00
OI-codes/Luogu/B2024/B2024.cpp
2022-03-17 19:45:08 +08:00

15 lines
177 B
C++

#include <cstdio>
double x;
int main() {
scanf("%lf", &x);
printf(
"%f\n"
"%.5f\n"
"%e\n"
"%g\n",
x, x, x, x);
return 0;
}