일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- gson
- 모바일게임
- 초대장
- 간접 표현식
- 간접표현식
- WebtoB
- JEUS6.0
- 처비
- 하스스톤
- 세븐나이츠
- IT 인코딩 encoding
- IT
- 다윈스트리밍서버
- 윈도우10
- jQuery
- JEUS
- Windows 10
- Sculpt Erogonomic Desktop
- 붕괴3
- Clash Royale
- VBA
- 다윈 스트리밍 서버
- 윈도우 10
- 클래시 로얄
- 세나
- WiFi
- Http Live Streaming Server
- bluestack
- HTML
- ubuntu
Archives
- Today
- Total
공책
반복 본문
for 문
for (int cnt = 0; cnt < 10; cnt ++){
System.out.println(cnt);
}
int arr[] = { 10, 20, 30, 40, 50};
for (int cnt = 0; cnt < arr.length; cnt++){
System.out.println(arr[cnt]);
}
//배열의 길이만큼 반복
향상된 for문
for( int num:arr){
System.out.println(num);
}
break를 이용 반복문 빠져나가기
for (int row = 0; row < 3; row++){
for (int col = 0; col < 5; col++){
System.out.println("("+row+","+col+")");
if((row==1)&&(col==3))
break;
}
}
Comments