-
Notifications
You must be signed in to change notification settings - Fork 0
/
mentalista em c
44 lines (27 loc) · 1.05 KB
/
mentalista em 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
44
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>// necessário p/ as funções rand() e srand()
#include <time.h>//necessário p/ função time()
int main () {
int secreto, chute, cont;
// gerar número secreto aleatório de 1 a 10 e atribuir a uma variável
srand(time(NULL));
secreto = rand() % 11;
printf("..::Criado por Fabee Miranda::..\n\n");
// mostra número secreto para validação de testes. Deve ser retirado.
// printf("\n\tEsse e o numero secreto: %d\n\n", secreto);
printf("\n\tAdivinhe o numero secreto!\n\n");
for (cont = 0; cont < 3; cont++) {
printf("\n\tChute um numero de 0 a 10: ");
scanf("%d", &chute);
if (chute == secreto) {
printf("\n\tParabens, voce acertou!! O numero secreto e: %d\n\n", secreto);
cont = 3;
} else if (cont < 2) {
printf("\n\tVoce errou! Tente novamente.\n\n");
} else {
printf("\n\tQue pena, nao foi dessa vez! O numero secreto e: %d\n\n", secreto);
}
}
system("pause");
}