日期:2014-05-17  浏览次数:20808 次

asp 一个运算:800/600 我要的结果2
800/600   我要的结果2
900/600   我要的结果2

这个运算叫什么运算
ASP如何实现

------解决方案--------------------
Function IIf(e, t, f)
If e Then
IIf = t
Else
IIf = f
End If
End Function

Function sum(a, b)
sum = (a \ b) + IIf(a mod b, 1, 0)
End Function