• Home
  • About
    • Moon photo

      Moon

      개발자는 자고 싶다.

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

백준 - 10926 ??!

07 Jun 2022

Reading time ~1 minute

문제

10926 ??!

screencapture

답

kotlin code

import java.util.*

fun main(args: Array<String>) = with(Scanner(System.`in`)) {
    var result = question(nextLine())
    println(result)
}

fun question(request: String): String {
    return "$request??!"
}


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