17 lines
289 B
C
17 lines
289 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
int main(void) {
|
|
printf("%f\n", 12345.678910111213);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
int main2(void) {
|
|
printf("%.12f\n", 12345.678910111213);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
int main3(void) {
|
|
printf("%.15f\n", 12345.678910111213);
|
|
return EXIT_SUCCESS;
|
|
}
|