首页 > 编程 > JSP > 正文

jsp输出九九乘法表的简单实例

2020-07-27 21:27:38
字体:
来源:转载
供稿:网友
<%  String st = "";   for(int i = 1; i <= 9; i++){     for(int j = 1; j <= i; j++){       st += j+"x"+i+"="+i*j;       st += "&nbsp;&nbsp;";     }     st += "<br>";   }%><table width="400" height="200" cellpadding="0" cellspacing="0" border="1" bordercolor="red" bgcolor="blue" >  <tr bgcolor="yellow">  <td height="40" align="center">九九乘法表</td></tr>  <tr>  <td rowspan="4"><%= "<br>" + st %></td></tr>

www.VeVB.COm

以上就是小编为大家带来的jsp输出九九乘法表的简单实例全部内容了,希望大家多多支持武林网~

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表