일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- GitHub Mirroring
- '티스토리 초대장/ 티스토리초대'
- 유니옥션
- 티스토리 초대장/ 티스토리초대
- Path Alias
- code 세팅
- webstorm
- Emmet
- GitHub 미러링
- 티스토리 초대장
- 실행시간 측정
- eslint-import-resolver-typescript
- visual studio code cli
- 초대장
- 음료같은녹즙
- GitLab Mirroring
- visual studio code
- 네이버 클라우드 플랫폼
- GitLab미러링
- React Native
- react native #gradle
- code .
- 프리티어
- currentTimeMillis
- 티스토리초대
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- gitlab 연동
- settings sync
- code 설치
- 니돈내먹
Archives
- Today
- Total
목록홍익대 Java (54)
방치하기
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
parse 랑 인수 받아 오는게 신기해서 .
class main{ public static void main(String[] args) { String num1 = args[0]; String num2 = args[1]; int sum = Integer.parseInt(num1) +Integer.parseInt(num2); System.out.println("num1 = " + num1); System.out.println("sum = " + sum); } }
홍익대 Java/수업
2009. 7. 14. 17:34