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

18 lines
201 B
C++
Raw Normal View History

2022-03-17 11:45:08 +00:00
#include <cstdio>
double x;
int main() {
scanf("%lf", &x);
printf(
"%f\n"
"%.5f\n"
"%e\n"
"%g\n",
2022-06-01 01:45:41 +00:00
x,
x,
x,
x);
2022-03-17 11:45:08 +00:00
return 0;
}