-
Notifications
You must be signed in to change notification settings - Fork 0
/
adivinhacao.c
89 lines (65 loc) · 2.04 KB
/
adivinhacao.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
// imprime o cabecalho do jogo
printf("*************************************\n");
printf("* Bem vindo ao jogo de adivinhacao! *\n");
printf("*************************************\n");
int segundos = time(0);
srand(segundos);
int numerogrande = rand();
int numerosecreto = numerogrande % 100;
int chute;
int tentativas = 1;
double pontos = 100;
int acertou = 0;
int nivel;
printf("Qual o nivel de dificuldade?\n");
printf("(1) Facil, (2) Medio, (3) Dificil\n\n");
printf("Escolha: ");
scanf("%d", &nivel);
int numerodetentativas;
switch(nivel) {
case 1:
numerodetentativas = 20;
break;
case 2:
numerodetentativas = 15;
break;
case 3:
numerodetentativas = 6;
break;
}
for(int i = 1; i <= numerodetentativas; i++) {
printf("Tentativa %d\n", tentativas);
printf("Qual e o seu chute? ");
scanf("%d", &chute);
printf("Seu chute foi %d \n", chute);
if(chute < 0) {
printf("Voce nao pode chutar numeros negativos!\n");
continue;
}
acertou = (chute == numerosecreto);
int maior = (chute > numerosecreto);
if (acertou) {
break;
}
else if(maior) {
printf("Seu chute foi maior que o numero secreto\n");
}
else {
printf("Seu chute foi menor que o numero secreto\n");
}
tentativas++;
double pontosperdidos = abs(chute - numerosecreto) / (double)2;
pontos = pontos - pontosperdidos;
}
if(acertou) {
printf("Fim de jogo!\n");
printf("Voce acertou em %d tentativas!\n", tentativas);
printf("Total de pontos: %.1f\n", pontos);
} else {
printf("Voce perdeu! Tente de novo!\n");
}
}