구구단 UI




g.jsp


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="EUC-KR"%>
<%@ page import="java.util.*" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
 
</head>
<body>
<div align="center">
<h2>구구단</h2>
</div>
<table align="center" cellpadding="6">
    <tr align="center">
    <td></td>
    <% for(int k = 2; k < 10; k++){ %>
        <td bgcolor=#0055c3 style="color:white"><%= k %></td>
    <%%>
    </tr>
    <% for(int i = 1; i < 10; i++) {%>
    </tr>
    <tr align="center" >
        <td bgcolor=#0055c3 style="color:white" width="70"><%=%></td>
    <% for(int j = 2; j < 10; j++) {%>
        <td bgcolor=#c0d7f4><%= i %> * <%= j %><%= i*j%></td>
    <%}}%>
    </tr>    
</table>
</body>
</html>
cs




'Web > JSP&Servlet' 카테고리의 다른 글

[JSP] request 내장객체  (0) 2018.10.24