<%--
Created by IntelliJ IDEA.
User: fangjiejie
Date: 2017/3/22
Time: 18:38
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<%!
String MultiTable1(){
String s="";
for(int i=1;i<=9;i++){
for(int j=1;j<=i;j++){
s+=i+"*"+j+"="+(i*j)+" ";
}
s+="<br>";
}
return s;
}
void MultiTable2(JspWriter out) throws Exception{
for(int i=1;i<=9;i++){
for(int j=1;j<=i;j++){
out.println(i+"*"+j+"="+(i*j)+" ");
}
out.println("<br>");
}
}
%>
<%=
MultiTable1()
%>
<% MultiTable2(out);
%>
</body>
</html>
JSP基础---两种方式打印九九乘法表
最新推荐文章于 2023-10-20 11:55:24 发布