13 lines
192 B
C
13 lines
192 B
C
|
#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,x,x,x,x,x);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|