jsp 的一个小问题
<table border="1"> <% for(int i=0;i<10;i++){ %> <tr> <% for(int j=0;j<10;j++){ %> <td><%=i*j%></td> <% } %> </tr> <% } %></table>