일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GitLab미러링
- code .
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- code 세팅
- 음료같은녹즙
- 티스토리 초대장/ 티스토리초대
- '티스토리 초대장/ 티스토리초대'
- 티스토리초대
- settings sync
- webstorm
- 니돈내먹
- GitHub Mirroring
- 네이버 클라우드 플랫폼
- Path Alias
- eslint-import-resolver-typescript
- 유니옥션
- visual studio code
- visual studio code cli
- React Native
- gitlab 연동
- 프리티어
- 초대장
- 실행시간 측정
- GitLab Mirroring
- Emmet
- 티스토리 초대장
- currentTimeMillis
- code 설치
- react native #gradle
- GitHub 미러링
- Today
- Total
목록2009/07/16 (7)
방치하기
import java.io.*;//read 를 위해 붙였습니다. class main{ public static void main(String[] args) throws Exception { int a; String num1 = args[0]; String num2 = args[1]; System.out.println("num1 = " + num1); System.out.println("num2 = " + num2); while(true) { System.out.print("사칙 연산자중 하나를 입력하시오 : (Ex: +)\n종료는 E를 입력해주세요.\n"); a=System.in.read(); System.in.skip(5); // 이거 엔터키 버려주는 if((char)a=='+') { int sum =..
class w2{ public static void main(String[] args) { String str = args[0]; char ch; ch=str.charAt(6); int a=(int)ch; if (48
class Ph { /*콜바이 벨류 public static void swap(int a, int b) { int memory=a; a=b; b=memory; System.out.printf("%d %d",a,b); } public static void main(String[] args) { int num=Integer.parseInt(args[0]); int num2=Integer.parseInt(args[1]); swap(num,num2); */ //콜바이 레퍼런스 public static void swArr(int [] ar) { int w=ar[0]; ar[0]=ar[1]; ar[1]=w; System.out.printf("%d %d\n",ar[0],ar[1]); } public static vo..
import java.util.*; class Ph { public static void main(String[] args) throws Exception { int [] numArr={1,5,3,2,7}; Arrays.sort(numArr); for (int i : numArr){ System.out.print(i+" "); Thread.sleep(500); System.out.print("\r"); Thread.sleep(500); System.out.print("잠시만 기달려"); Thread.sleep(500); System.out.print("\r"); } } }
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