有没有办法写一个If语句是
Swift,如下所示?
if a>b or c/d { //Do Something }
就像无处不在:
原文链接:https://www.f2er.com/swift/318832.htmlif a > b || d % c == 0 { // do sth }
我认为你的c / d意味着你希望d成为c的倍数.