S=1^2+3^2+5^2+…+99^2

2024-12-21 11:13:56
推荐回答(3个)
回答1:

下面是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求和

回答2:

回答3: