0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:25:27 +00:00
OI-codes/Luogu/B2024/B2024.cpp

18 lines
201 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;
}