当前位置:编程学习 > asp >>

利用ASP输出乘法表 请写出代码完整版

答案:
一楼的错了,是i,j不是a,b,空格应该用" "表示.应该改成:
<%
dim i,j
for i=1 to 9
for j=1 to i
response.write(i & "*" & j & "=" & i*j & "nbsp;")
next
response.write("<br>")
next
%>
<%
dim a,b
for i=1 to 9
for j=1 to i
response.write(i & "*" & j & "=" & i*j & ";nbsp")
next
response.write("<br>")
next
%>
<%
dim i,j
for i=1 to 9
for j=1 to i
response.write(j & "×" & i & "=" & j*i & "&nbsp;")
next
response.write("<br>")
next
%>

上一个:求ASP中用c#写的登陆注册代码!!!
下一个:ASP连接Accsee数据库代码,谁有啊

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,