j'ai bien boss !

This commit is contained in:
2022-09-21 11:43:38 +02:00
parent c2987d22e5
commit a55a2bf603
12 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include <stdio.h>
int main(void) {
int n;
double x;
char c;
printf("Veuillez saisir un reel.\n");
n = scanf("%lf", &x);
printf("Sa notation scientifique est : %f\n",x);
printf("Veuillez saisir un caractere.\n");
n = scanf("%c", &c);
printf("J'ecris ce dernier 5 fois : %c %c %c %c %c\n",c,c,c,c,c);
return 0;
}