반응형
출차: http://java.sun.com/docs/books/tutorial/java/nutsandbolts/for.html
기본이 되는 for문법 설명입니다.
<< for Statement(명령문) >>
<< 예제 >>
class ForDemo {
public static void main(String[] args){
for(int i=1; i<11; i++){
System.out.println("Count is: " + i);
}
}
}
The output of this program is:
<< 응용편 >>
기본이 되는 for문법 설명입니다.
<< for Statement(명령문) >>
for (initialization; termination; increment) {
statement(s)
}
termination : 부분이 true면 계속 반복 실행되며, false면 실행중지 됩니다.statement(s)
}
<< 예제 >>
class ForDemo {
public static void main(String[] args){
for(int i=1; i<11; i++){
System.out.println("Count is: " + i);
}
}
}
The output of this program is:
Count is: 1 Count is: 2 Count is: 3 Count is: 4 Count is: 5 Count is: 6 Count is: 7 Count is: 8 Count is: 9 Count is: 10
<< 응용편 >>
// 두가지 조건에 맞으면 종료~~!!
for(int i = 0; (i < recentboard.size() && i < 1); i++) {
}
for(int i = 0; (i < recentboard.size() && i < 1); i++) {
}
반응형
'IT공부방' 카테고리의 다른 글
네이트온 SSH 터널링 설정( nateon proxy ) (0) | 2010.12.14 |
---|---|
스토리지 구성방식 비교(DAN,NAT,SAN) (0) | 2010.11.03 |
[펌]에디트 플러스 사용자 파일 적용하는 방법 (0) | 2010.07.07 |
[동영상]안철수 KAIST석좌교수 "개발자가 성공하는 길" (0) | 2010.06.30 |
[액셀]막대형차트 + 꺾은 선형차트 결합하기 (0) | 2009.12.16 |
[오픈소스] ffmpeg Video Option 문서 (0) | 2009.04.16 |
[알고리즘] 이미지 추출하기 함수 (0) | 2008.12.23 |
[알고리즘] 10이하 숫자 없애기(123->120으로 만들기) (0) | 2008.12.22 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)