c/td1/ex_01_01.c
2020-09-12 18:33:50 +02:00

15 lines
280 B
C
Executable file

#include <stdio.h>
int main(void)
{
float nbre_entier;
//saisie d'un nombre
printf("Entrez votre nombre :");
scanf("%f", &nbre_entier);
//affichage d'un nombre
printf("\n\nLe nombre %f vous portera chance", nbre_entier);
return 0;
}