0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-02-17 21:46:53 +00:00

15 lines
177 B
C++
Raw Normal View History

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