下面是ASP程序运行的结果:
<%
Dim i,s
s=0
'第一种用for循环
for i=1 to 99 step 2
s = s + i*i
next
Response.Write(s)
'第二种用do...while...loop
s=0
i=1
do while (i<100)
s = s + i*i
i=i+2
loop
Response.Write(s)
%>
'************************************************************************************************
另可用Javescript编程实现:
第一种采用for循环求平方和
第二种采用do...while求和