알고리즘/SWEA2023. 8. 12. 16:42[D1] 2056 - 연월일 달력

package SWEA; import java.util.Scanner; public class Solution2056 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int T = sc.nextInt(); //TestCase T int[] arr = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; //1~12월의 일수배열 생성 // 1 2 3 4 5 6 7 8 9 10 11 12 for(int i=1; i

image