凤来仪

专业的计算机学习网站

首页 > ASP编写九九乘法口诀表

ASP编写九九乘法口诀表

点击:767 发布时间:

    初学ASP时,学着好玩,用程序编写九九乘法口诀表!

    CSS代码,控制排版显示:

table{ border-collapse:collapse;
}
td{ width:80px; text-align:center; border:#ccc solid 1px;
}

    九九乘法口诀表ASP程序代码:

<table cellpadding="0" cellspacing="0">
<%
i=1
j=1
do while i<10 and j<10
    response.write "<tr>"
    do while i<=j 
        response.write "<td>"&i&"×"&j&"="&i*j&"</td>"
        i=i+1
    loop
response.write "</tr>"
j=j+1
i=1
loop
%>
</table>