码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-09-05 01:48:51      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:this   分享   head   es2017   import   coding   title   page   doctype   

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基础

标签:this   分享   head   es2017   import   coding   title   page   doctype   

原文地址:http://www.cnblogs.com/qikeyishu/p/7476599.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!