일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- code 세팅
- GitHub 미러링
- code 설치
- 초대장
- code .
- GitHub Mirroring
- 실행시간 측정
- react native #gradle
- React Native
- 니돈내먹
- 네이버 클라우드 플랫폼
- Emmet
- visual studio code
- currentTimeMillis
- '티스토리 초대장/ 티스토리초대'
- Path Alias
- gitlab 연동
- 티스토리 초대장/ 티스토리초대
- 티스토리 초대장
- 티스토리초대
- 유니옥션
- 음료같은녹즙
- eslint-import-resolver-typescript
- visual studio code cli
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- settings sync
- GitLab Mirroring
- 프리티어
- webstorm
- GitLab미러링
- Today
- Total
목록홍익대 Java/수업 (47)
방치하기
class arr { public static void main(String[] args) { int [][] aS=new int [5][3] ; int [] aSc=new int [15]; for (int i=0;i
class StringTest { public static void main(String[] args) { String str = "abcd"; String str2 = str.replace( 'a', 'z') ; System.out.println(str2); System.out.println(str2.indexOf("b")); System.out.println(str2.toUpperCase()); char [] ch1= str.toCharArray(); for (int i=0;i
class main{ public static void main(String[] args) { int num=1; for (int a=0; aa ;space-- ) { System.out.print(" "); } for (int b=0;b
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); } }
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; } }
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); } }