if 语句 - 条件不用再加() - 非零就是真 不适用了,不能再用简单的非0数字代表真
前面其实已经用过了,还是判断成绩的例子吧.
var score = 80 if score > 90 { print("youxiu") }else if score > 80 { print("lianghao") }else if score > 60{ print("jige") }