2006-12-20 ASP学习
时间:2006-12-20 来源:txkss
11:55 2006-12-20
其它循环 while 条件
循环体
wend 特点:条件为真的时候一直循环
a=1
b=1
while a=1
b=b+1
if b>10 then
a=2
wend 王岩岚练习
<%
dim a,b
a=1
b=1
while a=1 step +1
b=b+1
if b>10 then
a=2
response.Write(a)
end if
wend
%> ----------------do循环----------------------------
它有两种用法
第一种写法 do while 条件 '条件为真就循环
循环体
loop 第二种写法 do '不管怎么样都要循环一次先,因为while检查在后面呢!
循环体
loop while 条件 a=1
b=1
do
response.Write(a)
loop while a>1 --------------------------------------for each-------------------
for each 元素名 in 数组/集合
循环体
next 例子:循环输出数组中的元素值 dim a(2)
a(1)=1
a(2)=2
for each val in a
response.write val '通过val这个元素变量名来引用数组A中的当前元素值
next -----------------------
dim a(3)
a(0)=1
a(1)=2
a(2)=3
a(3)=4
for each val in a
response.Write val
response.Write "<br>"
next
其它循环 while 条件
循环体
wend 特点:条件为真的时候一直循环
a=1
b=1
while a=1
b=b+1
if b>10 then
a=2
wend 王岩岚练习
<%
dim a,b
a=1
b=1
while a=1 step +1
b=b+1
if b>10 then
a=2
response.Write(a)
end if
wend
%> ----------------do循环----------------------------
它有两种用法
第一种写法 do while 条件 '条件为真就循环
循环体
loop 第二种写法 do '不管怎么样都要循环一次先,因为while检查在后面呢!
循环体
loop while 条件 a=1
b=1
do
response.Write(a)
loop while a>1 --------------------------------------for each-------------------
for each 元素名 in 数组/集合
循环体
next 例子:循环输出数组中的元素值 dim a(2)
a(1)=1
a(2)=2
for each val in a
response.write val '通过val这个元素变量名来引用数组A中的当前元素值
next -----------------------
dim a(3)
a(0)=1
a(1)=2
a(2)=3
a(3)=4
for each val in a
response.Write val
response.Write "<br>"
next
相关阅读 更多 +