18 lines
297 B
C
18 lines
297 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
/*EXO 1*/
|
|
|
|
int main(void) {
|
|
int n;
|
|
double x;
|
|
char v;
|
|
printf("Saisir un réel");
|
|
n = scanf("%lf\n",&x);
|
|
printf("Sa forme scientifque : %e\n",n),
|
|
v = getchar();
|
|
printf("5 fois de suites ; %c,%c,%c,%c,%c",v);
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|