Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[201800288 채다영] 1주차 미션을 제출합니다. #4

Open
wants to merge 22 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# 미션 - 숫자 야구 게임

## 구현할 기능 목록
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

기능 목록 잘 작성해주셨네요 💯


- 1부터 9까지의 서로 다른 임의의 수 3개를 생성한다.
- mallang.missionutils.Randoms의 pickNumberInRange() 사용

- 사용자로부터 숫자를 입력받는다.
- mallang.missionutils.Console의 readline() 사용
- 사용자가 잘못된 값을 입력할 경우 IllegalArgumentException 발생시킨 후 종료

- 임의의 수와 사용자의 수를 비교한다.
- 숫자와 자리가 같으면 스트라이크
- 숫자는 같고 자리가 다르면 볼
- 숫자와 자리 같은 것이 둘다 없으면 낫싱

- 숫자 비교 후 게임을 계속하거나 종료
- 3개의 숫자가 모두 같으면 게임 종료

- 게임 종료 후 1을 입력해 게임을 다시 시작하거나 2를 입력해 게임을 완전히 종료 가능

## 🔍 진행방식

- 미션은 **기능 요구사항, 프로그래밍 요구사항, 과제 진행 요구사항** 세 가지로 구성되어 있다.
Expand Down Expand Up @@ -118,3 +137,4 @@
## 📝 License

This project is [MIT](https://github.com/woowacourse/java-baseball-precourse/blob/master/LICENSE) licensed.

5 changes: 5 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## 소감
기능목록을 작성하고 구현을 해보는 것을 처음해보았는데 생각보다 쉽지 않았습니다.
기본적인 개념이 헷갈라는 것이 있었고 생각한 것을 코드로 작성하는 것이 어려웠습니다.
제대로 작동이 되지 않고 고쳐야 할 부분이 있다는 것을 알지만 어떻게 수정해야하는지 잘 모르겠습니다.
더 고민해 본 후 추가제출 기한에는 제대로 작동되도록 제출하도록 하겠습니다.
133 changes: 133 additions & 0 deletions src/main/java/baseball/Application.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,140 @@
package baseball;
import java.util.*;
import mallang.missionutils.Randoms;
import mallang.missionutils.Console;

import static mallang.missionutils.Console.readLine;

public class Application {
public static void main(String[] args) {
//TODO: 숫자 야구 게임 구현
startGame();
}
// 게임 시작
public static void startGame() {
List<Integer> answerNum = createNum();

while(true) {
List<Integer> userNum = new ArrayList<>();
List<Integer> result = checkNum(answer, userNum);
printResult(result);

if (result[2] == 3) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

result[2] == 3이 정확히 뭘 의미하는지 알기 어려워요!
어떻게 하면 알기 쉽게 바꿀 수 있을까요?

System.out.println("3개의 숫자를 모두 맞히셨습니다! 게임 종료 ");
break;
}
if(!continueGame()) {
break;
}
}
}
public static List<Integer> createNum() { // 변경 O
ArrayList<Integer> answer = new List<>();
for(int i = 0; i < answer.size(); i++) {
answer.set(i, Randoms.pickNumberInRange(1, 9));
}
return answer;
}

public static List<Integer> userNum() { // 변경 O
String input;
System.out.println("숫자를 입력해주세요 : ");

input = readLine();
if(input.length() > 3) {
throw new IllegalArgumentException();
}
alreadyNum(input);
List<Integer> guess = parseInput(input);
return guess;
}
public static void alreadyNum(String input) { // 변경 O
boolean containNum;
List<Integer> nums = new ArrayList<>();
for(int i = 0; i < 3; i++) {
int idx = Integer.parseInt(String.valueOf(input.charAt(i)));

containNum = !(nums.contains(idx));
if(containNum) {
nums.add(idx);
}
else {
throw new IllegalArgumentException();
}
}
}
public static List<Integer> parseInput(String input) { // 변경 O
List<Integer> guess = new List<>();
for(int i = 0; i < 3; i++) {
char num = input.charAt(i);
String strNum = String.valueOf(num);
if(checkInput(strNum, 1, 9)) {
guess.add(Integer.parseInt(strNum));
}
}
return guess;
}
public static boolean checkInput(String input, int start, int end) throws IllegalArgumentException { // 오류발생
try {
int num = Integer.parseInt(input);
if((start <= num) && (num <= end)) {
return true;
}
else {
throw new IllegalArgumentException();
}
catch (IllegalArgumentException e) {
throw e;
}
}

// 정답 확인 함수
public static List<Integer> compareNum(List<Integer> answer, List<Integer> guess) {
List<Integer> result = new ArrayList<>();
countBalls(answer, guess, result);
countStrikes(answer, guess, result);
result.set(2, 3 - result.get(0) - result.get(1)); // 낫싱 개수
return result;
}
// 볼 개수
public static void countBalls(List<Integer> answer, List<Integer> guess, List<Integer> result) {
for(int i = 0; i < answer.size(); i++) {
for(int j = 0; j < guess.size(); j++) {
if(answer.get(i).equals(guess.get(j)) && i != j) {
result.set(0, result.get(0) + 1);
}
}
}
}
// 스트라이크 개수
public static void countStrikes(List<Integer> answer, List<Integer> guess, List<Integer> result) {
for(int i = 0; i < answer.size(); i++) {
if(answer.get(i).equals(guess.get(i))) {
result.set(1, result.get(1) + 1);
}
}
}
// 결과 출력 (출력 수정 필요)
public static void printResult(List<Integer> result) {
System.out.println(result.get(0) + "볼 " + result.get(1) + "스트라이크 " + result.get(2) + "낫싱");
}
// 게임 재시작 여부
public static boolean continueGame() {
System.out.println("게임을 새로 시작하려면 1, 종료하려면 2를 입력하세요.");
String restart = readLine();

if (restart.length() != 1) {
throw new IllegalArgumentException();
}

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

공백 제거 부탁드려용!

checkInput(restart,1,2);

if (restart.equals("1")) {
return true;
} else if (restart.equals("2")) {
return false;
} else {
return false;
}
}
}