发布网友 发布时间:2024-10-24 04:51
共2个回答
热心网友 时间:2024-10-24 06:38
mod,是求余函数。
判断结果是否为0就可以了!
比如:
a = 23 mod 2
if a = 0 then
response.write("23是偶数")
else
response.write("23是奇数")
end if
热心网友 时间:2024-10-24 06:34
function isEven(num)
if not isNumeric(num) then
isEven="这不是一个数啊"
exit function
end if
if num mod 2 = 0 then
isEven="偶数"
else
isEven="奇数"
end if
end function