![]() |
#2
icecool2008-07-03 14:47
|
<%
function abc(m)
m=m+1
n=n+1
abc=n+m
response.write("n="&n&"<br>")
response.write("m="&m&"<br>")
end function
n=5
response.write n&":"&abc(n)
%>
以上运行结果为m=7 n=7 5:14,请问为什么m和N的值为7而不是6呢?