分类广告


推荐文章

  • 没有找到任何内容!
您当前的位置:中国站长下载网络编程ASP专区 → 文章内容

9*9表(可根据需要扩展)

  • 作者:佚名    来源:不详    发布时间:2005-12-31 12:35:38
  • 字体大小:
<div align="center"><font color="#FF0000"><b>乘法表</b></font><b></b> </div>

<table width="96%" border="1" cellspacing="0" cellpadding="4" bordercolorlight="#6666FF" bordercolordark="#FFFFFF" align="center">
  <%
For i=1 to 9 step 1%>
  <tr>
<%For j=1 to 9 step 1%>
<%if (i mod 2)<>(j mod 2) then
%>    <td bgcolor=#ffffcc>
<%else%>
    <td> <%end if%>
      <div align="right"><font color="#FF6600"><%=i%> <font face="Arial, Helvetica, sans-serif">X</font>
        <%=j%>=<b><%

%> <%=out%> </b></font></div>
    </td>
<%Next%>
  </tr>
<%Next%>
</table>

相关信息