-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadivinha.c
43 lines (35 loc) · 880 Bytes
/
adivinha.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <stdio.h>
#include <stdlib.h>
#define NUMERO_DE_TENTATIVAS 3
int main(void) {
printf("*********************************\n");
printf("* Bem vindo ao Jogo de adivinhação *\n");
printf("**********************************\n");
int numerosecreto = 42;
int chute;
int ganhou = 0;
int tentativas = 1;
while(!ganhou) {
printf("Qual o seu %d. chute? ", tentativas);
scanf("%d", &chute);
if(chute < 0) {
printf("Você nao pode usar numeros negativos\n");
continue;
}
printf("Seu %d. chute foi %d!\n", tentativas, chute);
int acertou = chute == numerosecreto;
int maior = chute == numerosecreto;
if(acertou) {
printf("Parabens! Voce acertou!\n");
ganhou = 1;
} else {
if(maior) {
printf("Seu chute foi maior que o numero secreto!\n");
} else {
printf("Seu chute foi menor que o numero secreto!\n");
}
}
}
printf("Obrigado por jogar!\n");
return 0;
}