-
Notifications
You must be signed in to change notification settings - Fork 0
/
DayTwo_2.java
62 lines (56 loc) · 1.64 KB
/
DayTwo_2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import java.io.File; // Import the File class
import java.io.FileNotFoundException; // Import this class to handle errors
import java.util.Scanner; // Import the Scanner class to read text files
public class DayTwo_2 {
public static void main(String[] args) {
try {
File myObj = new File("testDayTwo.txt");
Scanner myReader = new Scanner(myObj);
int punteggio = 0;
while (myReader.hasNextLine()) {
String data = myReader.nextLine();
char chosen = data.charAt(0);
char result = data.charAt(2);
//pareggio
if(result == 'Y'){
if(chosen == 'A'){
punteggio = punteggio + 4;
}
if(chosen == 'B'){
punteggio = punteggio + 5;
}
if(chosen == 'C'){
punteggio = punteggio + 6;
} }
//vittoria
if(result == 'Z'){
if(chosen == 'A'){
punteggio = punteggio + 8;
}
if(chosen == 'B'){
punteggio = punteggio + 9;
}
if(chosen == 'C'){
punteggio = punteggio + 7;
} }
//sconfitta
if(result == 'X'){
if(chosen == 'A'){
punteggio = punteggio + 3;
}
if(chosen == 'B'){
punteggio = punteggio + 1;
}
if(chosen == 'C'){
punteggio = punteggio + 2;
} }
}
System.out.println(punteggio);
myReader.close();
}
catch (FileNotFoundException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}