问题标题:
这样的写法为什么是错的?dimaa=0ifa>0thenresponse.write("正")elseifa=0thenresponse.write("0")elseresponse.write("负")endif为什么需要再加一个endif?
问题描述:
这样的写法为什么是错的?
dima
a=0
ifa>0then
response.write("正")
elseifa=0then
response.write("0")
else
response.write("负")
endif
为什么需要再加一个endif?
唐远炎回答:
少了一个endif改为:0thenresponse.write("正")elseifa=0thenresponse.write("0")elseresponse.write("负")endifendif%>每一个if之后都要有个endif,你看看你写了2个if,就要要两个endif...
查看更多