일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Sort
- System
- Kafka
- 악성코드
- function
- OOP
- UTF-8
- HTML
- request
- 포인터
- beans
- windows
- C
- meta
- WebProgramming
- query
- 투자
- algorithm
- Call-by-reference
- 노드
- java
- API
- jsp
- JavaScript
- CLASS
- CSS
- 윈도우즈
- 자료구조
- c++
- array
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