9*9表(可根据需要扩展) |
|
|
2004-10-14 11:39:14 |
|
>
<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>
|
| 内容为网上收集,并不代表本站同意或者赞同其观点,如果有任何版权,内容问题,请联系本站,我们将在第一时间处理. |
|
|
|