编写一个JSP页面,输出九九乘法表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写一个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>Jsp在页面上输出九九乘法表</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">
</head>

<body>
<%
StringBuffer sb = new StringBuffer();
for(int i = 1; i <= 9; i++)
for(int j = 1; j <= i; j++)
sb.append(j + "*" + i + "=");
sb.append(j*i);
sb.append(" ");

sb.append("<br>");

%>
<%=sb.toString()%>
</body>
</html>
参考技术A 1*1=1 9*9=81 参考技术B <html >
<head>
</head>

<body>
<script language="javascript">
for (j=1;j<=9;j++)
for (i=1;i<=j;i++)
document.write(i+"*"+j+"="+i*j+" ")
if (i==2 && j<=4)
document.write(" ")

document.write("<br>")

</script>
</body>
</html>
文件名直接写?.jsp,放到服务器上,然后访问就可以了。本回答被提问者采纳

图片数字型的九九乘法表

在jsp页面输出

样式

<style>
img{
  width:20px;
  height:20px;
}
</style>

这里的是java代码

<body>
<%
out.print("<table >");
for(int i = 1; i <= 9; i ++) {
	out.print("<tr>");
	for(int j = 1; j <= i; j ++) {
		out.print("<td width=‘200px‘><img src=‘img/"+ j +".png‘>" + "<img src=‘img/x.png‘>" + 
		"<img src=‘img/" + i +".png‘>" + "<img src=‘img/deng.png‘>");
		if(i * j >= 10) {
			out.print("<img src=‘img/"+ (j * i) / 10 + ".png‘>");	
		}
		out.print("<img src=‘img/"+ (j * i) % 10 + ".png‘></td>");
		//out.print(" &nbsp");
	}
	out.print("</tr>");
	//out.print("<br>");
}
out.print("</table>");
%>
</body>

 结果如下图显示:

技术分享图片

以上是关于编写一个JSP页面,输出九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章

用JSP编写一个九九乘法表问题?

怎么用python写一个九九乘法表?

使用循环语句编写程序,输出三角形的九九乘法表

jsp输出九九乘法表

jsp输出九九乘法表

怎么用java编写程序实现九九乘法表?