-
Notifications
You must be signed in to change notification settings - Fork 0
/
LMW20221200_mid1.java
191 lines (160 loc) · 6.73 KB
/
LMW20221200_mid1.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
package mid;
import java.io.*;
import java.util.Random;
import java.util.Scanner;
public class LMW20221200_mid1 {
Scanner scanner = new Scanner(System.in);
Random random = new Random();
String[] choices = {"가위", "바위", "보"};
private boolean isUserBetting;
private int userBettingAmount = 0;
private int computerBettingAmount = 0;
private int userScore;
private int computerScore;
int round = 1;
public void playGame() {
createFile();
setInput();
while (true) {
System.out.println("===== ROUND " + round + " =====");
System.out.println(">>> 0 ~ 2 / 가위 ~ 보 입력");
int computerChoice = random.nextInt(3);
// System.out.println(computerChoice); 테스트 시에 컴퓨터가 낸 값을 출력
String userChoice = scanner.next();
int userSelectedChoice;
switch (userChoice) {
case "가위":
case "0":
userSelectedChoice = 0;
break;
case "바위":
case "1":
userSelectedChoice = 1;
break;
case "보":
case "2":
userSelectedChoice = 2;
break;
default:
System.out.println(">>> 0 ~ 2 또는 가위 ~ 보 입력\n" + "-".repeat(20));
continue;
}
System.out.println(">>> 나 : " + choices[userSelectedChoice] + " | 컴퓨터 : " + choices[computerChoice]);
if (userSelectedChoice == computerChoice) {
System.out.println("비겼습니다.\n");
} else if ((userSelectedChoice == 0 && computerChoice == 1) || (userSelectedChoice == 1 && computerChoice == 2) || (userSelectedChoice == 2 && computerChoice == 0)) {
computerScore++;
System.out.println("졌습니다.\n");
} else {
System.out.println("이겼습니다.\n");
userScore++;
}
if ((userScore == 5) || (computerScore == 5)) {
if (userScore > computerScore) {
System.out.println("최종 스코어 - 사용자: " + userScore + ", 컴퓨터: " + computerScore);
System.out.println("사용자가 최종 승리했습니다!");
} else {
System.out.println("최종 스코어 - 사용자: " + userScore + ", 컴퓨터: " + computerScore);
System.out.println("컴퓨터가 최종 승리했습니다!");
}
break;
}
System.out.println("현재 스코어 - 사용자: " + userScore + ", 컴퓨터: " + computerScore);
round++;
}
calculatePoints(isUserBetting, userBettingAmount, computerBettingAmount);
}
public void calculatePoints(boolean isUserBetting, int userBettingAmount, int computerBettingAmount) {
int point;
int currentPoint = readPoints();
if (isUserBetting) {
if (userScore > computerScore) {
point = currentPoint + ((computerBettingAmount / userBettingAmount) * (userBettingAmount + userBettingAmount));
System.out.println((computerBettingAmount / userBettingAmount) * (userBettingAmount + userBettingAmount) + "포인트를 얻었습니다.");
} else {
point = currentPoint - userBettingAmount;
System.out.println(userBettingAmount + "포인트를 잃었습니다.");
}
} else {
if (userScore > computerScore) {
point = currentPoint + 1000;
System.out.println("1000포인트를 얻었습니다.");
} else {
point = currentPoint;
}
}
writePoints(point);
}
public void setInput() {
int currentPoint = readPoints(); // 현재 보유 포인트 확인
while (true) {
System.out.print("베팅을 하시겠습니까? y / n : ");
String input = scanner.next();
if (input.equals("y")) {
if (currentPoint == 0) {
System.out.println("보유 포인트가 없습니다.\n");
isUserBetting = false;
} else {
System.out.println("보유중인 포인트: " + currentPoint + "p");
System.out.print("베팅 금액을 입력하세요: ");
userBettingAmount = scanner.nextInt();
if (userBettingAmount > currentPoint) {
System.out.println("보유 포인트가 부족합니다. 베팅 여부를 다시 입력받겠습니다.\n");
continue;
}
computerBettingAmount = userBettingAmount + (int) (Math.random() * 10000);
System.out.println("사용자: " + userBettingAmount + "원, 컴퓨터: " + computerBettingAmount + "원을 걸었습니다.");
isUserBetting = true;
}
break;
} else if (input.equals("n")) {
isUserBetting = false;
break;
} else {
System.out.println(">>> y 또는 n을 입력해주세요.\n" + "-".repeat(20));
}
}
}
File file = new File("Point.txt");
// 파일 생성 메소드
public void createFile() {
if (!file.exists()) { // 파일이 존재하지 않을 때
try {
FileWriter fw = new FileWriter(file);
file.createNewFile();
fw.write(Integer.toString(10000));
fw.close();
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
}
// 파일 읽기 메소드
public int readPoints() {
int point = 0;
try {
BufferedReader br = new BufferedReader(new FileReader(file));
point = Integer.parseInt(br.readLine());
br.close();
} catch (IOException e) {
e.printStackTrace();
}
return point;
}
// 파일 쓰기 메소드
public void writePoints(int points) {
try {
FileWriter fw = new FileWriter(file);
fw.write(Integer.toString(points));
fw.flush();
fw.close();
System.out.println("남은 포인트: " + points);
} catch (IOException e) { // 입출력 예외
System.out.println(e.getMessage());
}
}
public static void main(String[] args) {
LMW20221200_mid1 lmw20221200Mid = new LMW20221200_mid1();
lmw20221200Mid.playGame();
}
}