【4】 运算符 控制流程

基础入门笔记

2008-08-12 16:31

+    -    *   /   %

+= -=    *=   /= %=

++          --

&&     ||      !       and      or

== ===   !=   >=   > <   <=

if ( )
{   xxxxxxxxxxxx; }
else
{ xxxxxxxxxxxx;   }

while ( )
{   xxxxxxxxxxxx;   }

for ($a=1;$a<100;$a++)
{ xxxxxxxxx;}

switch (x){
case x:
xxxxxx;
break;
case x:
xxxxxx;
break;
dafault:
xxxxx;
break;
}


函数
function xxx(){

return 值
}

带参数的函数
function xxx($x,$y,$z){

return 值
}


带默认值的参数的函数
function xxx($x=1,$y="111",$z=true){

return 值
}

asp
---------------------------------------
if 1=1 then

else

end if


select case x
case 1
---------
case 2
---------
case 3
--------
case else
--------
end select

do while i<100
i=i+1
loop


for 1 to 100

next

function abc(a,b,c)     'asp 无默认参数值

abc=返回值
end function                               

sub abc(a,b,)   '无返回值


end sub