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

jsp输出九九乘法表

时间:2016-06-23 08:50:52      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:

 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输出九九乘法表

标签:

原文地址:http://www.cnblogs.com/ouyangtangfeng99/p/5609230.html

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