[SWEA] 2056. 연월일 달력(JAVA)
1234567891011121314151617181920212223import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int T = scan.nextInt(); int lim[] = {31,28,31,30,31,30,31,31,30,31,30,31}; for(int i=0; i
PS/Problem_Solving
2019. 4. 24. 23:52