4.2 Swift中if语句的多分支执行

前端之家收集整理的这篇文章主要介绍了4.2 Swift中if语句的多分支执行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

/**

if 语句的多分支执行

*/

let score:Double = 98.5

var res:String = ""

if score >= 90 {

res = "优秀"

} else if score >= 80 {

res = "良好"

} else if score >= 60 {

res = "及格"

} else if score >= 0 {

res = "不及格"

}

if score >= 90 {

res = "优秀"

} else {

if score >= 80 {

res = "良好"

} else {

if score >= 60 {

res = "及格"

}

else {

// if <#condition#> {

// <#code#>

// }

}

}

}

print(res)

原文链接:https://www.f2er.com/swift/322476.html

猜你在找的Swift相关文章