티스토리 뷰
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!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=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<h2 align="center">구구단</h2>
<table align="center" border="1">
<tr bgcolor="lightgrey">
<td></td>
<%
for (int i = 2; i < 10; i++) {
%>
<td align="center" width="80"><%=i%></td>
<%
}
%>
<%
for (int i = 1; i < 10; i++) {
%>
<tr>
<td align="center" bgcolor="lightgrey" width="50"><%=i%></td>
<%
for (int j = 2; j < 10; j++) {
%>
<td align="center"><%=j%> X <%=i%>= <%=j * i%></td>
<%
}
%>
</tr>
<%
}
%>
</tr>
</table>
</body>
</html>
'FRONT-END > JSP' 카테고리의 다른 글
[JSP] ATTRIBUTE & SCOPE - 속성과 영역 (0) | 2018.04.12 |
---|---|
[JSP] 오류 예외처리 (0) | 2018.04.12 |
[JSP] 한글 처리 (0) | 2018.04.12 |
[JSP] 내장 객체 (1) | 2018.04.12 |
[JSP] 간단한 계산기 (0) | 2018.04.10 |
댓글