19 lines
442 B
C
19 lines
442 B
C
|
# include <stdlib.h>
|
||
|
# include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
double nombre;
|
||
|
char lettre;
|
||
|
printf("Veuillez saisir un réel : ");
|
||
|
scanf("%lf", &nombre);
|
||
|
printf("\nSa notation scientifique est : %e\n", nombre);
|
||
|
printf("Veuillez taper un caractère : ");
|
||
|
getchar();
|
||
|
lettre = getchar();
|
||
|
printf("%c\n", lettre);
|
||
|
printf("%c\n", lettre);
|
||
|
printf("%c\n", lettre);
|
||
|
printf("%c\n", lettre);
|
||
|
printf("%c\n", lettre);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|