早教吧 育儿知识 作业答案 考试题库 百科 知识分享

这样的写法为什么是错的?dimaa=0ifa>0thenresponse.write("正")elseifa=0thenresponse.write("0")elseresponse.write("负")endif为什么需要再加一个endif?

题目详情
这样的写法为什么是错的?
dim a
a=0
if a>0 then
response.write("正")
else if a=0 then
response.write("0")
else
response.write("负")
end if
为什么需要再加一个end if?
▼优质解答
答案和解析
少了一个end if
改为:
0 then
response.write("正")
else if a=0 then
response.write("0")
else
response.write("负")
end if
end if
%>
每一个if之后都要有个end if,你看看你写了2个if,就要要两个end if
看了 这样的写法为什么是错的?di...的网友还看了以下: