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

[숫자 야구 게임] 황수연 제출합니다. #222

Open
wants to merge 4 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
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# 미션 - 숫자 야구



게임을 시작하면 "숫자 야구 게임을 시작합니다." 메시지를 출력한다.

컴퓨터가 생각하는 서로 다른 3자리 숫자를 랜덤의 값으로 생성한다.

사용자에게 3자리 숫자를 입력하도록 요청한다.

사용자 입력이 유효한지 확인하고, 유효하지 않은 경우 예외처리로 게임을 종료한다.

유효한 입력인 경우, 사용자 입력과 컴퓨터 숫자를 비교하여 결과를 출력한다.

사용자가 3개의 숫자를 모두 맞히면 "3개의 숫자를 모두 맞히셨습니다! 게임 종료" 메시지를 출력하고 게임을 종료한다.

게임을 종료한 후 다시 시작하거나 완전히 종료할 수 있도록 메뉴를 제공하고, 사용자 입력에 따라 게임을 다시 시작하거나 종료한다.

모든 예외와 에러를 적절하게 처리하여 사용자가 비정상적인 입력을 하거나 예외적인 상황이 발생하는 경우 애플리케이션은 종료하도록 한다.


## 🔍 진행 방식

- 미션은 **기능 요구 사항, 프로그래밍 요구 사항, 과제 진행 요구 사항** 세 가지로 구성되어 있다.
Expand Down
8 changes: 8 additions & 0 deletions local.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Wed Oct 25 18:33:20 KST 2023
sdk.dir=/Users/hwangsuyeon/Library/Android/sdk
100 changes: 99 additions & 1 deletion src/main/kotlin/baseball/Application.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,103 @@
package baseball
import camp.nextstep.edu.missionutils.Randoms

fun main() {
TODO("프로그램 구현")
var playAgain = true

println("숫자 야구 게임을 시작합니다.")

while (playAgain) {
val computerNumber = generateRandomNumber()

while (true) {
print("숫자를 입력해주세요 : ")

val userInput = readLine()

try {
val userGuess = userInput?.toInt()

if (userGuess == null || !input(userGuess)) {
throw IllegalArgumentException()
} else {
val result = checkGuess(userGuess, computerNumber)

if (result == 30) {
println("3개의 숫자를 모두 맞히셨습니다! 게임 종료")
break
} else {
displayResult(result)
if (result == 0) {
println("낫싱")
}
}
}
} catch (e: NumberFormatException) {
throw IllegalArgumentException()
}
}

print("게임을 새로 시작하려면 1, 종료하려면 2를 입력하세요: ")
val choice = readLine()
if (choice == "2") {
println("게임을 종료합니다.")
playAgain = false
} else if (choice != "1") {
println("올바른 선택이 아닙니다. 게임을 종료합니다.")
playAgain = false
}
}
}

fun generateRandomNumber(): Int {
val computer = mutableListOf<Int>()
while (computer.size < 3) {
val randomNumber = Randoms.pickNumberInRange(1, 9)
if (!computer.contains(randomNumber)) {
computer.add(randomNumber)
}
}

val result = computer[0] * 100 + computer[1] * 10 + computer[2]
return result
}


fun size(num: Int): Boolean {
val digits = num.toString().toSet()
return digits.size == 3
}

fun input(num: Int): Boolean {
return num in 100..999 && size(num)
}

fun checkGuess(userGuess: Int, computerNumber: Int): Int {
val userDigits = userGuess.toString().toCharArray()
val computerDigits = computerNumber.toString().toCharArray()

var strikes = 0
var balls = 0

for (i in 0 until 3) {
if (userDigits[i] == computerDigits[i]) {
strikes += 1
} else if (computerDigits.contains(userDigits[i])) {
balls += 1
}
}

return strikes * 10 + balls
}

fun displayResult(result: Int) {
val strikes = result / 10
val balls = result % 10
if (strikes > 0 && balls > 0) {
println("$strikes 스트라이크 $balls 볼")
} else if (strikes > 0) {
println("$strikes 스트라이크")
} else if (balls > 0) {
println("$balls 볼")
}
}
1 change: 1 addition & 0 deletions src/test/kotlin/baseball/ApplicationTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ class ApplicationTest : NsTest() {
override fun runMain() {
main()
}

}