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
반응형
'DATA 분석 교육 과정 (2024.02~08) > JSP&Servlet' 카테고리의 다른 글
JSP_기본 문법 (지시자-page, include) (0) | 2024.04.12 |
---|---|
JSP_(실습) 계산기 (0) | 2024.04.12 |
JSP_(실습) 1~100 합 구하기 (0) | 2024.04.12 |
JSP_JSP의 필요성 , 기본문법(<%,<%=,<%!) (0) | 2024.04.12 |
Servlet_(실습) POST방식 (user-info) (0) | 2024.04.12 |