用javaweb写出九九乘法表
时间: 2024-09-03 12:03:10 浏览: 96
JSP九九乘法表
5星 · 资源好评率100%
在JavaWeb中,我们可以使用Servlet或者JSP来动态生成九九乘法表。这里我将提供一个简单的JSP示例,展示如何在页面上显示九九乘法表:
```jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>九九乘法表</title>
<style type="text/css">
table {
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid black;
padding: 8px;
text-align: center;
}
th {
background-color: #f2f2f2;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<h2>九九乘法表</h2>
<table>
<thead>
<tr>
<th></th>
{% for i in 1 to 9 %}
<th>${i}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for i in 1 to 9 %}
<tr>
<td>${i}</td>
{% for j in 1 to i %}
<td>${j * i}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
```
这个JSP文件会渲染出一个HTML表格,每一行代表一个数,列对应着从1到该行数的乘积。`<c:forEach>`标签用于循环遍历行和列。
阅读全文