控制流 / 条件语句 / if/else 语句

let A = 3
let B = 5
let C = 7
if (C >= A && C >= B) {
    print("nothing is larger than C")
}
if (!(A >= B || A >= C)) {
    print("A is the smallest")
}