Developpement/23DEV1.1/TPS1/TP01/05-Reels/Tele.c

18 lines
321 B
C
Raw Normal View History

2024-12-09 11:53:11 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
double x;
char s;
printf("Entrez un caractere : ");
scanf("%c",&s);
printf("Entrez un reel : ");
scanf("%lf",&x);
printf("%e\n", x);
printf("%c\n", s);
printf("%c\n", s);
printf("%c\n", s);
printf("%c\n", s);
printf("%c\n", s);
return EXIT_SUCCESS;
}