15 lines
280 B
C
Executable file
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;
|
|
}
|