일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- code 세팅
- currentTimeMillis
- Emmet
- gitlab 연동
- 실행시간 측정
- 티스토리초대
- 초대장
- Path Alias
- eslint-import-resolver-typescript
- GitHub 미러링
- 유니옥션
- 음료같은녹즙
- React Native
- 네이버 클라우드 플랫폼
- 티스토리 초대장/ 티스토리초대
- '티스토리 초대장/ 티스토리초대'
- 티스토리 초대장
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- visual studio code
- 니돈내먹
- GitLab Mirroring
- react native #gradle
- settings sync
- GitHub Mirroring
- visual studio code cli
- webstorm
- GitLab미러링
- code .
- code 설치
- 프리티어
Archives
- Today
- Total
목록전체 글 (105)
방치하기
str.substring 이용
class main{ public static void main(String[] args) { String str=args[0]; int birth= Integer.parseInt("19"+str.substring(0,2)); System.out.println(birth); } }
홍익대 Java/수업
2009. 7. 15. 16:37
스위치랑 str.charAt(숫자)
class main{ public static void main(String[] args) { String str = args[0]; char ch; ch=str.charAt(0); switch(ch){ case 'a': case 'A':System.out.printf("America %c",ch); break; case 'b': case 'B':System.out.println("brazil " +ch); break; default: System.out.println("알아서 하시길");break; } }
홍익대 Java/수업
2009. 7. 15. 15:20