-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaior_menor.rb
80 lines (60 loc) · 1.5 KB
/
maior_menor.rb
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
def boas_vindas
puts "Bem-vidno a um jogo de advinhação"
puts "Qual é o seu nome?"
nome = gets.chomp
puts "\n\n\n\n\n"
puts "Legal, vamos começar o jogo #{nome}"
end
def sorteia
puts "Escolhendo um número entre 0 e 200..."
puts "\n\n\n"
numero_escolhido = rand(200)
puts "Escolhido... Vamos-la tente adivinhar"
puts "\n\n"
numero_escolhido
end
def pede_numero(chutes, a, tentativas)
puts "Tentativa #{a} de #{tentativas}"
puts "Chutes até agora: #{chutes}"
puts "Digite o número: "
chute = gets.chomp
puts "\n\n"
puts "Sera que vc acertou? O número que você chutou é #{chute}"
chute.to_i
end
def verifica_se_acertou(numero, chute)
numero == chute
acerto = chute == numero
puts "\n"
if acerto
puts "Acertou!"
return true
end
maior = numero > chute
if maior
puts "Infelizmente você errou, mas tente novamente, talvez o número seja maior"
puts "\n"
else
puts "Infelizmente você errou, mas tente novamente, talvez o número seja menor"
puts "\n"
end
false
end
boas_vindas
sorteia
pontos_ate_agora = 1000
numero = sorteia
tentativas = 5
chutes = []
total_de_chutes = 0
for a in (1..tentativas)
chute = pede_numero(chutes ,a ,tentativas)
chutes << chute
total_de_chutes += 1
pontos_a_perder = (chute - numero).abs / 2.0
pontos_ate_agora -= pontos_a_perder
if verifica_se_acertou(numero ,chute)
break
end
end
puts "Você ganhou até agora #{pontos_ate_agora} pontos"