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+" ";
}
str+="<br>";
}
%>
<div>
<%=str%>
</div>
</body>
</html>
示例效果图:
以上是关于JSP页面输出九九乘法表--JSP基础的主要内容,如果未能解决你的问题,请参考以下文章