Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 항해99
- 회고
- 정보처리기사
- 코드숨
- 알고리즘
- 성적프로그램
- 2020년 제4회 정보처리기사 필기 문제 분석
- LeetCode
- sqldeveloper
- If
- 2020년 정보처리기사 4회
- 2020년 일정
- 미니프로젝트
- 스터디
- post
- hackerrank
- 책리뷰
- 필기
- 주간회고
- algorithms
- java
- Real MySQL
- 함수형 코딩
- 뇌정리
- Til
- git
- 서평
- Jackson
- Python
- jsp
Archives
- Today
- Total
목록Calendar (1)
조컴퓨터
200827 OOP 11 - Java 객체지향 프로그래밍(Ⅰ, Ⅱ)
지난 시간 이어서 과제 진행 Calendar 날짜에 관련된 클래스이다. 일 표시를 Date로 사용한다. GregorianCalendar를 활용할 수 있다. GregorianCalendar now=new GregorianCalendar(); System.out.println(now.get(Calendar.YEAR));//2020 System.out.println(now.get(Calendar.MONTH));//7 System.out.println(now.get(Calendar.MONTH)+1);//8 태어난년도%12 //->0원숭이 1닭 2개 ~~~~ 11양 //생년월일 int myYear = Integer.parseInt(jumin.substring(0, 2)); int myMonth = Integer...
자바 웹개발자 과정/JAVA
2020. 8. 27. 09:53