26 lines
344 B
C
26 lines
344 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
int n;
|
|
double x;
|
|
char m;
|
|
|
|
|
|
|
|
printf("Saisir un réel :\n");
|
|
n = scanf("%lf",&x);
|
|
|
|
printf("Saisir un caratcère :\n");
|
|
m = getchar();
|
|
|
|
printf("Notation scientifque : %e\n", x);
|
|
printf("Votre caractère : %c\n", m );
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|