if a>b or c/d { //Do Something }
if a > b || d % c == 0 { // do sth }
我认为你的c / d意味着你希望d成为c的倍数.@H_404_10@