⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 add_result.jsp

📁 使用myeclipse开发的有加、减、乘、除功能的B/S模式的计算器
💻 JSP
字号:
<%@ page contentType="text/html;charset=GBK" pageEncoding="GBK"%>
<html>
	<head>
		<title>Calculator</title>
	</head>
	<body bgcolor="#ffffc0">
		<h1>
			Calculator
		</h1>
		<table>
			<tbody>
				<tr>
					<td>
						the first number:
					</td>
					<td>
						${param.num1 }
					</td>
				</tr>
				<tr>
					<td>
						the second number:
					</td>
					<td>
						${param.num2 }
					</td>
				</tr>
				<tr>
					<td>
						the result:
					</td>
					<td>
						${requestScope.result }
					</td>
				</tr>
			</tbody>
		</table>
		<button onclick="history.go(-1);">
			return
		</button>
	</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -