<% int h=3;//行數 int l=3;//列數 %> <table> <% for(int i=0;i<h;i++){ %> <tr> <% for(int j=0;j<l;j++){ %> <td></td> <%}%> </tr> <%}%> </table>