<%@ 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>
<%--
<%! %> 선언문(자바 변수, 메소드 선언)
<% %> 스크릿렛(자바 로직)
<%= %> 식 표현(html에 출력)
<%-- --> 주석
--%>
<%!
StringBuilder sb = new StringBuilder();
%>
<%
for(int i=1; i<=9; i++) {
sb.append(String.format("3 × %2d = %2d", i, 3*i));
sb.append("<br />");
}
%>
<%=
sb.toString()
%>
</body>
</html>
'programing > JSP' 카테고리의 다른 글
JSP - JSP 특징, get방식, post방식, web.xml에 서블릿 맵핑 (0) | 2018.03.21 |
---|---|
MySQL 에러 - Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use (0) | 2018.03.10 |
아파치 실행 법 (0) | 2018.03.08 |
JSP - 입력한 두 수의 합 출력 (0) | 2018.02.23 |
JSP - 웹 양식 만들기 (0) | 2018.02.23 |