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 |