Files
DEV/DEV1.1/TP05/Exo_4.c

13 lines
192 B
C
Raw Normal View History

#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;
}