if statement swfit
// if expression {
// do something
// }
var a: Int = 3
if a == 3 {
print("Hello World")
} else if a < 3 {
print("dlroW olleH")
} else {
print("42")
}
if statement swfit
// if expression {
// do something
// }
var a: Int = 3
if a == 3 {
print("Hello World")
} else if a < 3 {
print("dlroW olleH")
} else {
print("42")
}
swift else if
if (condition1) {
// code block 1
}
else if (condition2){
// code block 2
}
else {
// code block 3
}
swift if statement
// check the number is positive or negative
let num = 15
var result = ""
if (num > 0) {
result = "Positive Number"
}
else {
result = "Negative Number"
}
print(result)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us