[Swift] 조건문

임클·2023년 1월 3일
0

Swift

목록 보기
5/37
post-thumbnail
post-custom-banner

조건문 (if)

구조

if condition {
	code
}    

작성방법

var randomNumber : Int = 3
...
if randomNumber % 2 == 0{
	Text("짝수")
}else{
	Text("홀수")
}
//홀수
profile
iOS를 공부하는 임클입니다.

0개의 댓글