#include #include #include int main(int argc, char * argv[]) { srand(time(NULL)); int ans = rand() % 100; int guess; for (int attempt = 0; attempt < 5; attempt++) { printf("%d essai(s) restant(s)\n", 5 - attempt); scanf("%d", &guess); if (guess == ans) { printf("Bravo, vous avez trouvé !\n"); return EXIT_SUCCESS; } if (guess > ans) printf("La réponse est - grande.\n"); else printf("La réponse est + grande.\n"); } printf("Dommage, la bonne réponse était %d.\n", ans); return EXIT_SUCCESS; }