jsp输出九九乘法表

Posted 唐枫

tags:

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

 1 <%   String st = "";
 2      for(int i = 1; i <= 9; i++){
 3          for(int j = 1; j <= i; j++){
 4              st += j+"x"+i+"="+i*j;
 5              st += "&nbsp;&nbsp;";
 6          }
 7          st += "<br>";
 8      }
 9 %>
10 <table width="400" height="200" cellpadding="0" cellspacing="0" border="1" bordercolor="red" bgcolor="blue" >
11     <tr bgcolor="yellow">
12     <td height="40" align="center">九九乘法表</td></tr>
13     <tr>
14     <td rowspan="4"><%= "<br>" + st %></td></tr>

以上是关于jsp输出九九乘法表的主要内容,如果未能解决你的问题,请参考以下文章

jsp输出九九乘法表

jsp输出九九乘法表

JSP制作一个九九乘法表代码?

用JSP编写一个九九乘法表问题?

图片数字型的九九乘法表

使用JSP表达式和JSP脚本打印九九乘法表