• Home
  • About
    • Moon photo

      Moon

      개발자는 자고 싶다.

    • Learn More
    • Twitter
    • Facebook
    • Instagram
    • Github
    • Steam
  • Posts
    • All Posts
    • All Tags
  • Projects

백준 - 11654 아스키 코드

07 Jun 2022

Reading time ~1 minute

문제

11654 아스키 코드

screencapture

답

kotlin code

import java.util.*

fun main() {
    q11654()
}

fun q11654() = with(Scanner(System.`in`)) {
    println(next().toCharArray().first().code)
}


baekjoonkotlin코틀린백준브론즈구현 Share Tweet +1