// Créateur JCM
// boucle while
#include <stdio.h>
int main(void)
{
	float nbr=0;
	while (nbr!=10)
	{
		printf("Tapez 10 pour terminer le programme\n");
		scanf("%f",&nbr);
	}
	return(0);
}
