투케이2K

10. (swift/xcode) if else , switch case 문을 사용해서 조건문 분기 처리 실시 본문

Swift

10. (swift/xcode) if else , switch case 문을 사용해서 조건문 분기 처리 실시

투케이2K 2021. 10. 8. 13:32

[개발 환경 설정]

개발 툴 : XCODE

개발 언어 : SWIFT


[소스 코드]

     /*
     [요약 설명]
     1. if 문법 : if 조건 else if 조건 else
     2. switch 문법 : switch 데이터 case 조건 default
     3. swift 에서는 if , switch 문을 사용해서 조건문 분기처리를 실시할 수 있습니다
     */
    
    
    
    // [테스트 메인 함수 정의 실시]
    func testMain(){
        print("[Program Start]")
        print("")
        
        
        // 초기 데이터 정의 실시
        let int_data = 10
        let str_data = "안녕"
        
        
        // if 문을 사용해서 조건문 처리 실시
        if int_data == 0 { // 0 값일 경우
            print("조건문 : [IF] 만족")
            print("")
        }
        else if int_data >= 1 { // 양수 값일 경우
            print("조건문 : [ELSE IF] 만족")
            print("")
        }
        else { // 음수 값일 경우
            print("조건문 : [ELSE] 만족")
            print("")
        }
        
        
        // switch 문을 사용해서 조건문 처리 실시
        switch str_data {
        case "hello" :
            print("조건문 : [case] [hello] 만족")
            print("")
        case "hi":
            print("조건문 : [case] [hi] 만족")
            print("")
        case "안녕":
            print("조건문 : [case] [안녕] 만족")
            print("")
        default:
            print("조건문 : [case] [기본] 만족")
            print("")
        }
    }

[결과 출력]


[요약 설명]

/*

[요약 설명]

1. if 문법 : if 조건 else if 조건 else

2. switch 문법 : switch 데이터 case 조건 default

3. swift 에서는 if , switch 문을 사용해서 조건문 분기처리를 실시할 수 있습니다

*/


 

반응형
Comments