asp输出九九乘法口诀

来源:百度知道 编辑:UC知道 时间:2024/05/15 02:02:37
谁知道啊?
急用!交作业!
谢谢

汗,不好好学习……不过上学的时候也这样,帮你一下……

<%
dim a,b
a=1
while a<=9
for b=a to 9
response.write cstr(a) & "*" & cstr(b) & "=" & cstr(a*b) & " "
next
response.write "<br>"
a=a+1
wend
%>