JSP页面输出九九乘法表--JSP基础

Posted Thanlon

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JSP页面输出九九乘法表--JSP基础相关的知识,希望对你有一定的参考价值。

index.jsp:

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>

<!DOCTYPE html>
<html>
<head>
<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">
</head>
<body>
<%
String str="";
for(int i=1;i<=9;i++){
for(int j=1;j<=i;j++){
str+=j+"x"+i+"="+j*i+"&nbsp;&nbsp;";
}
str+="<br>";
}
%>
<div>
<%=str%>
</div>
</body>
</html>

示例效果图:

 

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

jsp输出九九乘法表

jsp输出九九乘法表

JSP制作一个九九乘法表代码?

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

使用JSP表达式和JSP脚本打印九九乘法表

图片数字型的九九乘法表