JSP3.10:利用for循环输出样式为三行五列的表格
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <p>利用for循环输出样式为三行五列的表格</p> <table border="1"> <% for(int i=0;i<3;i++){ %> <tr> <% for(int n=0;n<5;n++){ %> <td><%=n%></td> <%} %> </tr> <%} %> </table> </body> </html>