Tags
- ์ํ
- queue
- LV2
- Python
- DP
- Study
- BOJ
- ์๋ฃ๊ตฌ์กฐ
- ๋ฐฑํธ๋ํน
- BFS
- dfs
- ๊ทธ๋ํ ํ์
- greedy
- ๋๋น ์ฐ์ ํ์
- ์ ๋ ฌ
- ๋ฌธ์์ด
- ๊ทธ๋ํ ์ด๋ก
- ๊ตฌํ
- Brute Force Algorithm
- ๊ต์ฌ
- Dynamic Programming
- sort
- CodingTest
- ์ ์๋ก
- stack
- PGM
- Java
- SpringBoot
- ๊น์ด ์ฐ์ ํ์
- ์๋ฎฌ๋ ์ด์
Archives
๊ธฐ๋ก๋ฐฉ
BOJ_10669 : ์ค๋ ๋ ์ง ๋ณธ๋ฌธ
๐ธ ๋ฌธ์ ๋ถ์ ๐ธ
- ํ์ฌ ๋ ์ง๋ฅผ ๊ท๊ฒฉ์ ๋ง๊ฒ ์ถ๋ ฅํ๋ค.
๐ธ ์ฝ๋ ๐ธ
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class Main {
public static void main(String[] args) {
LocalDate now = LocalDate.now();
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("YYYY-MM-dd");
String formatedNow = now.format(formatter);
System.out.println(formatedNow);
}
}
๐ธ ์ฝ๋ ํด์ ๐ธ
- LocalDate์ now()๋ก ํ์ฌ์๊ฐ์ ๋ถ๋ฌ์จ๋ค.
- DateTimeFormatter์ ofPattern()์ผ๋ก ํฌ๋งท์ ์ ํ๋ค.
๐ธ end ๐ธ
- LocalDate์ DateTimeFormatter๋ ์ฌ์ฉ์ด ์์ง ์์ํ๋ค.
728x90
'CodingTest > Java' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
BOJ_11382 : ๊ผฌ๋ง ์ ๋ฏผ (0) | 2022.09.13 |
---|---|
BOJ_25083 : ์์น (0) | 2022.09.13 |
Lv.1 : 3์ง๋ฒ ๋ค์ง๊ธฐ (0) | 2022.09.12 |
Lv.1 : ๊ฐ์ ์ซ์๋ ์ซ์ด (0) | 2022.09.12 |
Lv.1 : ๋ด์ (0) | 2022.09.12 |