일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- CLASS
- beans
- java
- request
- UTF-8
- 악성코드
- Call-by-reference
- HTML
- c++
- 노드
- algorithm
- 자료구조
- query
- System
- 포인터
- JavaScript
- meta
- function
- API
- C
- 윈도우즈
- jsp
- Sort
- 투자
- windows
- OOP
- WebProgramming
- Kafka
- array
- CSS
Archives
- Today
- Total
hahahia
break와 continue의 차이 본문
/* made by hahahia */
#include <Stdio.h>
int main()
{
int i, j, k;
for(i=0; i<2; i++) {
printf("i loop in\n");
for(j=0; j<2; j++) {
printf("j loop in\n");
for(k=0; k<2; k++) {
printf("k loop in\n");
continue; // continue에서는 k loop out가 출력이안되고바로다시 k루프를 돈다.
// break 에서는 k loop out이 출력이안되고 k루프를 아예 빠져나온다. printf("k loop out\n");
}
printf("j loop out\n");
}
printf("i loop out\n");
}
return 0;
}
실행결과
'Language > C' 카테고리의 다른 글
지역 변수와 전역 변수 (0) | 2011.05.22 |
---|---|
C언어 함수 (0) | 2011.05.22 |
ab + ba = 99 를 만족하는 a, b값 구하는 프로그램 (0) | 2011.05.13 |
컴입 과제 - 반목문(for, while, do while)을 이용한 factorial 출력program (0) | 2011.05.10 |
반복문 3가지의 특징(for, while, do while) (0) | 2011.05.10 |
Comments