#include <stdio.h>
int main() {
printf ("-=-=-=-=-=-=-=-\n");
printf ("advinhe o numero\n");
printf ("-=-=-=-=-=-=-=-\n");
int nsecreto = 42;
int chute;
for(int i = 1; i <= 3; i++) {
printf ("chute um numero\n ");
scanf ("%d", &chute);
printf ("seu chute foi %d \n", chute);
int acertou = (chute == nsecreto);
if (acertou) {
printf("voce acertou");
}
else {
printf("voce errou\n");
int maior = chute > nsecreto;
if (maior) {
printf ("tente um numero menor\n");
}
else {
printf ("tente um numero maior\n");
}
}
}
}
note: use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 to compile your code