TP04 fini

This commit is contained in:
2023-09-12 17:26:55 +02:00
parent 84006e98ee
commit af0f47be11
11 changed files with 76 additions and 0 deletions

14
DEV1.1/TP04/telescopage.c Normal file
View File

@@ -0,0 +1,14 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
double r;
printf("Tapez un réel : ");
scanf("%lf",&r);
printf("%e\n",r);
getchar();
printf("Tapez un caractère : ");
char l=getchar();
printf("%c?\n%c?\n%c?\n%c?\n%c?\n",l,l,l,l,l);
return EXIT_SUCCESS;
}