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

网页输出九九乘法表

时间:2016-10-27 19:21:38      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:har   encoding   content   org   style   type   img   输出   html4   

技术分享

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>九九乘法表</title>
</head>
<body>

 
<%

String str = "";
for(int i = 1 ; i <10 ; i++)
{
    for(int j = 1 ; j<=i ; j ++)
    {
        str+= j + "*" + i+"="+i*j;
        str+="&nbsp;";
    }
        str+="<br>";
}
%>

<%=str %>



</body>
</html>

 

网页输出九九乘法表

标签:har   encoding   content   org   style   type   img   输出   html4   

原文地址:http://www.cnblogs.com/zs6666/p/6004779.html

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