if(条件)
{ 程序体 }
else if(条件)
{程序体}
else if(条件)
{程序体}
....
....
....
else{ 程序体}
你笔误:
应该是
else
if(x==0)
y=0;
如果写成x=0,这是一个赋值语句,if(x=0)条件将无条件的成立,所以会出问题。
if()
else if()
else if()
else if()
其实就是
if else的变型而已
else紧跟前面最近的if
if a=b then
msgbox("123","123123")
(省end if)
else if
msgbox("")