JSP练习 99乘法表

Posted 厂公

tags:

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

<%@ 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>Insert title here</title>
</head>
<body>
<%String str="";
for(int i=1;i<=9;i++)
{
   for(int j=1;j<=i;j++)
   {
       str+=j+"*"+i+"="+j*i+"\t";
      
   }
   str+="<br>";
}
%>
<%=str %>
</body>
</html>

 

以上是关于JSP练习 99乘法表的主要内容,如果未能解决你的问题,请参考以下文章

while练习99乘法表

python--练习--99乘法表

Python学习简单练习-99乘法表

python- 小程序练习:循环语句for,while实现99乘法表

python小程序练习:循环语句for,while实现99乘法表

字符串操作练习:星座凯撒密码99乘法表