利用jsp输出九九乘法表

利用jsp输出九九乘法表

代码如下:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP 'index.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>

<body>
<%


%>
<script type="text/javascript">

</script>

<form action="02.jsp" method="post">
行数:<input type="text" size="10" name="h"><br/>
列数:<input type="text" size="10" name="l"><br/>

<input type="submit" value="提交">



</form>

</body>
</html>

02.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">

<title>My JSP '02.jsp' starting page</title>

<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->

</head>

<body>
<%
int h=Integer.parseInt(request.getParameter("h"));
int l=Integer.parseInt(request.getParameter("l"));
%>

<table border="1" cellpadding="5" cellspacing="5">
<%
for(int g=h;g<=l;g++){
%>
<tr>
<%
for(int k=1;k<=g;k++){
%>
<td>
<%= g%>*<%=k %>=<%=g*k %>

</td>
<%} %>
</tr>
<%} %>
</table>

</body>
</html>

相关文章: