-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumberGame.java
More file actions
55 lines (46 loc) · 1.35 KB
/
NumberGame.java
File metadata and controls
55 lines (46 loc) · 1.35 KB
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
import java.util.Random;
import java.util.Scanner;
class Game{
public int number;
public int inputNumber;
public int noOfGuesses = 0;
public int getNoOfGuesses() {
return this.noOfGuesses;
}
public void setNoOfGuesses(int noOfGuesses) {
this.noOfGuesses = noOfGuesses;
}
Game(){
Random rand = new Random();
this.number = rand.nextInt(100);
}
void takeUserInput(){
System.out.println("Guess the number");
Scanner sc = new Scanner(System.in);
this.inputNumber = sc.nextInt();
}
boolean isCorrectNumber(){
this.noOfGuesses++;
if (this.inputNumber==this.number){
System.out.format("Yes you guessed it right, it was %d\nYou guessed it in %d attempts", this.number, this.noOfGuesses);
return true;
}
else if(this.inputNumber<this.number){
System.out.println("Too low...");
}
else if(this.inputNumber>this.number){
System.out.println("Too high...");
}
return false;
}
}
public class NumberGame {
public static void main(String[] args) {
Game g = new Game();
boolean b= false;
while(!b){
g.takeUserInput();
b = g.isCorrectNumber();
}
}
}