-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJitsuTest.java
More file actions
39 lines (33 loc) · 921 Bytes
/
JitsuTest.java
File metadata and controls
39 lines (33 loc) · 921 Bytes
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
// Author: Akshavi
import java.util.Scanner;
public class JitsuTest{
public static void main (String[] args) {
Scanner input = new Scanner (System.in);
JitsuGame game = new JitsuGame();
game.getFirstHand();
int i = 1;
do {
System.out.println("");
System.out.println("*** ROUND " + i + " ***");
System.out.println("");
game.string();
System.out.print("please choose a card:");
int chosen = input.nextInt();
System.out.println("you chose " + game.pick(chosen));
System.out.println("computer's card was " + game.newCompCard());
if (game.compare() == 1) {
System.out.println("you won this round.");
System.out.println(game.addPlayerInventory());
}
else if (game.compare() == 2) {
System.out.println("computer won this round.");
System.out.println(game.addCompInventory());
}
else {
System.out.println("tie!");
}
i++;
}
//while(!game.hasWon());
}
}