투케이2K

82. (Objective-C/objc) math 사용해 소수점 ceil (올림) , floor (버림) , round (반올림) , fabs (절대값) 구하기 본문

Objective-C

82. (Objective-C/objc) math 사용해 소수점 ceil (올림) , floor (버림) , round (반올림) , fabs (절대값) 구하기

투케이2K 2022. 9. 22. 08:15

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : OBJECTIVE-C

 

[소스 코드]

// MARK: - [헤더 파일에 정의 없이 : void 메소드 구현]
- (void)testMain {
    printf("\n");
    printf("==================================== \n");
    printf("[ViewController >> testMain() :: 테스트 메소드 수행] \n");
    printf("==================================== \n");
    printf("\n");
    
    
    /*
     ------------------------------------
     [요약 설명]
     ------------------------------------
     1. math : 수학 관련 함수를 지원해줍니다
     ------------------------------------
     2. 필요 import :
     
     #import <math.h>
     ------------------------------------
     */
    
    
    // [try catch 구문 정의 실시]
    @try {
        
        // [초기 변수 선언 실시]
        double douData = 3.141592;
        
        
        // [로그 출력 실시]
        printf("\n");
        printf("==================================== \n");
        printf("[ViewController >> try :: 로직 처리 결과 확인] \n");
        printf("[douData (원본) :: %f] \n", douData);
        printf("[ceil (올림) :: %f] \n", ceil(douData));
        printf("[floor (버림) :: %f] \n", floor(douData));
        printf("[round (반올림) :: %f] \n", round(douData));
        printf("[fabs (절대값) :: %f] \n", fabs(douData));
        printf("==================================== \n");
        printf("\n");

    }
    @catch (NSException *exception) {
        printf("\n");
        printf("==================================== \n");
        printf("[ViewController >> catch :: 예외 상황 확인] \n");
        printf("[name :: %s] \n", exception.name.description.UTF8String);
        printf("[reason :: %s] \n", exception.reason.description.UTF8String);
        printf("==================================== \n");
        printf("\n");
    }
}

 

[결과 출력]

 

 
반응형
Comments