13 lines
182 B
Plaintext
13 lines
182 B
Plaintext
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
int n;
|
|
double x;
|
|
printf("entrez un nombre : ");
|
|
n = scanf("%lf", &x);
|
|
printf("%f\n", x);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|