Playground/자바문제집

[백준] 10699

미숫가루설탕많이 2023. 1. 21. 15:50
import java.time.LocalDate;
import java.time.ZoneId;

public class Main {
   public static void main(String[] args) {

      LocalDate seoulNow = LocalDate.now(ZoneId.of("Asia/Seoul"));

      System.out.println(seoulNow);
   }
}

'Playground > 자바문제집' 카테고리의 다른 글

[백준] 11382번  (0) 2023.01.21
[백준] 7287번  (0) 2023.01.21
[백준] 1157번  (0) 2023.01.21
[백준] 4673번  (0) 2023.01.21
[백준] 15596번  (0) 2023.01.21