3.10

<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<style>
table{
width: 200px;
height:200px;
text-align: center;
}
</style>
</head>

<body>
<table border = "1" cellspacing="0" cellpadding="0">
<%
for(int i =0;i<3;i++){
out.print("<tr>");
for(int j =0;j<5;j++){
out.print("<td>"+j+"</td>");
}
out.print("</tr>");
}
%>
</table>
</body>
</html>

posted @ 2021-03-10 15:59  小范是个画家  阅读(53)  评论(0编辑  收藏  举报