从页面中输入一个自然数编写Serlvet程序计算一组三角形数据。输出时数据背景色临行异色隔行同色。请给出输入页面源代码
<!DOCTYPE html>
<html>
<head>
<title>计算三角形数据</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
text-align: center;
}
th {
background-color: #4CAF50;
color: white;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>输入一个自然数</h1>
<form action="triangle" method="get">
<label for="num">请输入一个自然数:</label>
<input type="number" name="num" id="num" required>
<button type="submit">计算</button>
</form>
</body>
</html
原文地址: https://www.cveoy.top/t/topic/ebNI 著作权归作者所有。请勿转载和采集!