Notice
Recent Posts
Recent Comments
Link
투케이2K
6. (Objective-C/objc) for , while true 무한 루프 반복문을 사용해서 카운트 수행 실시 본문
Objective-C
6. (Objective-C/objc) for , while true 무한 루프 반복문을 사용해서 카운트 수행 실시
투케이2K 2022. 2. 18. 19:11[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : OBJECTIVE-C
[testMain 함수]
// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
printf("\n");
printf("=============================== \n");
printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
printf("=============================== \n");
printf("\n");
// [for 반복문 선언 실시]
for (int i=1; i<=5; i++){
printf("\n");
printf("=============================== \n");
printf("[for :: %d] \n", i);
printf("=============================== \n");
printf("\n");
}
// [while 무한 루프 선언 실시]
int count = 1;
while (true) {
// 무한 루트 탈출 조건 지정
if (count > 5){
break;
}
// 카운트 출력
printf("\n");
printf("=============================== \n");
printf("[while :: %d] \n", count);
printf("=============================== \n");
printf("\n");
// 카운트 증가
count ++;
}
}
[결과 출력]
반응형
'Objective-C' 카테고리의 다른 글
Comments