본문 바로가기

Algorithm

[Baekjoon] 제출 기본 템플릿 - JAVA

1
2
3
4
5
6
7
/* import ... */
public class Main {
    public static void main(String[] args) {
        /* TODO : ...*/
    
    }
}
cs