mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 11:38:49 +00:00
18 lines
201 B
C++
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;
|
|
}
|