-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdivinheNumero.java
47 lines (39 loc) · 1.77 KB
/
AdivinheNumero.java
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
import java.util.*;
public class AdivinheNumero {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
Random aleatorio = new Random();
int chute, resto, chutes = 5, numeroDaSorte = aleatorio.nextInt(100) + 1;
boolean acertou = false;
String enunciado = "Informe seu chute: ";
while (chutes > 0) {
System.out.println(enunciado);
chute = input.nextInt();
chutes--;
resto = chute % numeroDaSorte;
String chances = "Você tem mais: " + chutes + " chance(s)";
if (chute == numeroDaSorte) {
System.out.printf("PARABÉNS, VOCÊ GANHOU O JOGO!");
acertou = true;
break;
}
if (chute > numeroDaSorte && resto == 1) {
System.out.printf("Tá quente, seu chute foi maior que o número sorteado.%n%s%n", chances);
} else if (chute > numeroDaSorte) {
System.out.printf("Seu chute foi maior que o número sorteado.%n%s%n", chances);
}
if (resto != 1) {
resto = chute % (numeroDaSorte - 2);
if (chute < numeroDaSorte && resto == 1) {
System.out.printf("Tá quente, seu chute foi menor que o número sorteado.%n%s%n", chances);
} else if (chute < numeroDaSorte) {
System.out.printf("Seu chute foi menor que o número sorteado.%n%s%n", chances);
}
}
}
if (chutes == 0 && acertou == false) {
System.out.printf("Suas chances acabaram%nGAME OVER!");
System.out.printf("O número sorteado era: %d", numeroDaSorte);
}
}
}