0
0

More than 3 years have passed since last update.

jsp内の九九表

Posted at
kuku99.html
jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<table border="1">
<caption>九九表</caption>
    <% for(int i=1;i<=9;i++){ %>
        <tr>
            <%for(int j=1;j<=9;j++){ %>
            <td><%=i*j %></td>
            <%} %>
        </tr>
    <%} %>
</table>
</body>
</html>

スクリーンショット 2021-03-28 14.48.03.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0