練習:jsp頁面輸出九九乘法口訣表

話不多說,我們直接上代碼:

<%--
  Created by IntelliJ IDEA.
  User: Administrator
  Date: 2020/4/21
  Time: 14:20
  To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>九九乘法口訣表</title>
    <style type="text/css">

        table{
            width: 650px;
        }

    </style>
</head>
<body>
<h1 align="center">九九乘法口訣表</h1>
<table align="center">

    <%for (int i = 1; i <= 9; i++) { %>

    <tr>
        <%for (int j = 1; j <= i; j++) {%>
        <td>
            <%=j + "x" + i + "=" + (i * j)%>
        </td>
        <% } %>
    </tr>

    <% } %>





</table>

</body>
</html>

效果截圖:

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章