일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 세븐나이츠
- 클래시 로얄
- 처비
- 모바일게임
- IT
- IT 인코딩 encoding
- Sculpt Erogonomic Desktop
- JEUS
- 붕괴3
- Windows 10
- JEUS6.0
- bluestack
- ubuntu
- Clash Royale
- 윈도우 10
- 초대장
- 다윈 스트리밍 서버
- HTML
- gson
- WebtoB
- WiFi
- Http Live Streaming Server
- VBA
- jQuery
- 간접 표현식
- 윈도우10
- 다윈스트리밍서버
- 하스스톤
- 세나
- 간접표현식
Archives
- Today
- Total
공책
배열 본문
1차원 배열
int arr[];
arr = new int[10];
arr[0] = 10;
arr[1] = 20;
arr[2] = arr[0] + arr[1];
System.out.println(arr[0]);
System.out.println(arr[1]);
System.out.println(arr[2]);
2차원 배열
int table[][] = new int[3][4];
table[0][0] = 10;
table[1][1] = 20;
table[2][3] = table[0][0] + table[1][1];
System.out.println(table[0][0]);
System.out.println(table[1][1]);
System.out.println(table[2][3]);
배열의 크기 구하는 함수
배열.length
'웹 개발 > Java' 카테고리의 다른 글
반복 (0) | 2013.08.20 |
---|---|
if 조건문 (0) | 2013.08.20 |
복합 대입 연산자 (0) | 2013.08.20 |
헝가리안 표기법, 카멜(낙타) 표기법 (0) | 2013.08.20 |
지역 변수의 선언과 이용 (0) | 2013.08.19 |
Comments