程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp/javascript打印九九乘法表代碼

jsp/javascript打印九九乘法表代碼

編輯:關於JSP
jsp表達式方式
復制代碼 代碼如下:
<center>
<table border="1">
<%
for (int i = 1; i <= 9; i++) {
%>
<tr>
<%
for (int j = 1; j <= 9; j++) {
%>
<td>
<%
if (j <= i) {
%> <%=i%>*<%=i%>=<%=i * j%> <%
} else
%>  
</td>
<%
}
%>
</tr>
<%
}
%>
</table>
</center>

javascript方式
復制代碼 代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>99乘法表</title>
<script type="text/javascript">
document.write("<center><table border=\"3\">");
for (i = 1; i <= 9; i++) {
document.write("<tr>");
for (j = 1; j <= 9; j++) {
if (j <= i) {
document.write("<td>" + i + "*" + j + "=" + i * j + "</td>")
} else
document.write("<td> </td>");
}
document.write("</tr>");
}
document.write("</table></center>");
</script>
</head>
<body>
</body>
</html>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved