반응형
<%@ 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> <center> <h2>gugudan</h2> <table border=1 width=560> <tr bgcolor=#ccccff> <% for(int i=2; i<=9; i++) { %> <td> <%= i+"dan" %> </td> <% } %> </tr> <% for(int i=1; i<=9; i++) // 줄수 { %> <tr> <% for(int j=2; j<=9; j++) { %> <td><%= j+"X"+i+"="+j*i %></td> <% } %> </tr> <% } %> </table> </center> </body> </html>
jsp 를 통한 구구단 예제 샘플
반응형
'JSP' 카테고리의 다른 글
[JSP|JAVA]JSP빨리 알아보기_3(request,response) (0) | 2015.10.29 |
---|---|
[JSP|JAVA]JSP빨리 알아보기_2(스크립트,지시자,주석) (0) | 2015.10.29 |
[JSP|JAVA]Servlet 빨리 알아보기[get,post]_1 (0) | 2015.10.27 |
[자바(JSP)](01)개발환경설정[JAVA,PATH,Eclipse]세팅!!!! (0) | 2015.10.26 |
[html/jsp/java]회원가입 및 회원정보 수정 프로그래밍!!!!! (0) | 2015.10.14 |