Computer/Apple Ecosystem Insights (19) 썸네일형 리스트형 [Swift] 조건문 이번시간에는 조건문을 알아보겠습니다If 문과 , 삼항연산자, Switch 문에 대해서 공부해보았습니다 :) // 2016. 02. 10. Ruke var tempF = 32 var isFreezing : Bool = true if(tempF == 32){ isFreezing = true}else if(tempF < 32){ isFreezing = true}else { isFreezing = false} if (tempF [Swift] 반복문 ! 반복문을 빼놓을 수 없겠죠? // for and while loops // for loopvar names = ["apple","banna","cherry","dole","fineapple","goody","honey"]for var x=0;x> change to repeat whilex = 0repeat { print(x) x++}while(x < 100 ) // Dictionary With loop var states = ["NJ":"New Jersey","CA":"California"] for (abbrev,state) in states { print(abbrev) print(state) } [Swift] 변수들의 타입 안녕하세요?Udemy 에서 영상강좌를 통해 공부를 시작합니다함께 공부를 해 나가보아요 :) 하루안에 모든걸 끝내보고자 합니다 :) 먼저 Number 타입들에 대한 학습입니다. //: Playground - noun: a place where people can play var a = 7var b : Float = 10.7 // floatvar c = 21.9 // double var d = Int.max (a-3)*10 var number = 12 if number 이전 1 2 3 다음