- 소스
<%@ 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>
<%
for(int i=0 ; i<5 ; i++){
for(int j=1 ; j<i+1 ; j++)
out.print(" ");
for(int k=5 ; k>i ; k--)
out.print(k + " ");
out.println("<br>");
}
%>
</body>
</html>
- 결과