백준 - 11654 아스키 코드
문제
11654 아스키 코드
답
kotlin code
1
2
3
4
5
6
7
8
9
import java.util.*
fun main() {
q11654()
}
fun q11654() = with(Scanner(System.`in`)) {
println(next().toCharArray().first().code)
}
This post is licensed under CC BY 4.0 by the author.