Skip to content

Commit

Permalink
[RENAME/#1] section00 디렉토리명 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
b1urrrr committed Nov 17, 2023
1 parent a436530 commit ddbe694
Show file tree
Hide file tree
Showing 35 changed files with 17 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,21 @@ fun main() {
println(numberInput)
val stringInput = reader.next()
println(stringInput)

// 조건문
val i = 5
if (i > 10) {
print("10보다 크다")
} else if (i > 5) {
print("5보다 크다")
} else {
print("")
}

val result = when {
i > 10 -> "10보다 크다"
i > 5 -> "5보다 크다"
else -> "!!!"
}
println(result)
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ddbe694

Please sign in to comment.