[백준] 오늘 날짜 (10699)(kotlin)
문제 설명
서울의 오늘 날짜를 출력하는 프로그램을 작성하시오.
출력
서울의 오늘 날짜를 “YYYY-MM-DD” 형식으로 출력한다.
문제 풀이1
import java.time.LocalDate
import java.time.format.DateTimeFormatter
fun main(args: Array<String>) = println(
"${LocalDate
.now()
.format(DateTimeFormatter.ISO_LOCAL_DATE)}"
)