본문 바로가기

DATA 분석 교육 과정 (2024.02~08)/JSP&Servlet

JSP_(실습) 방 만들기

728x90
<%@ 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>

	<table border=1>
		<tr>

			<%
			for (int i = 1; i < 11; i++) {
			%>
			<td><%=i%></td>
			<%
			}
			%>


		</tr>
	</table>

</body>
</html>

출처: 스마트인재개발원

728x90
반응형