package calendar; import java.util.Calendar; public class Program { public static void main(String[] args) { int []days = new int [42]; Calendar cal = Calendar.getInstance(); cal.set(2013,10-1,1); //10-1 = 10월 (0부터시작) int week = cal.get(Calendar.DAY_OF_WEEK); for(int i=0; i<31; i++) days[i+week-1]= i+1; System.out.printf("%d\n\n",week); for(int i=0, n=1; i<42; i++, n++) { System.out.printf("%2d\t",days[i]); if(n%7==0) System.out.println(); } } }
'개발 > java' 카테고리의 다른 글
로또 번호 출력하기 (함수 호출 이용) (0) | 2013.09.24 |
---|---|
자바 로또번호 출력하기(중복제거) (0) | 2013.09.24 |
자바 달력 날짜 출력하기(2) (0) | 2013.09.23 |
자바 배열 자리변경하기 (0) | 2013.09.23 |
자바 로또번호 출력하기 (1) (0) | 2013.09.23 |