「Swift」範囲(range)でif条件式のサンプル
書式
if 条件式
使用例
func isFuncRes(tt: Int) -> Bool { if tt >= 60 && tt <= 88 { return true } return false } isFuncRes(tt: 65) isFuncRes(tt: 70)
結果
false
true
Coding Changes the World
書式
if 条件式
使用例
func isFuncRes(tt: Int) -> Bool { if tt >= 60 && tt <= 88 { return true } return false } isFuncRes(tt: 65) isFuncRes(tt: 70)
結果
false
true