码迷,mamicode.com
首页 > 其他好文 > 详细

图片数字型的九九乘法表

时间:2018-06-30 16:23:36      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:九九乘法表   样式   style   highlight   idt   bsp   inf   amp   class   

在jsp页面输出

样式

<style>
img{
  width:20px;
  height:20px;
}
</style>

这里的是java代码

<body>
<%
out.print("<table >");
for(int i = 1; i <= 9; i ++) {
	out.print("<tr>");
	for(int j = 1; j <= i; j ++) {
		out.print("<td width=‘200px‘><img src=‘img/"+ j +".png‘>" + "<img src=‘img/x.png‘>" + 
		"<img src=‘img/" + i +".png‘>" + "<img src=‘img/deng.png‘>");
		if(i * j >= 10) {
			out.print("<img src=‘img/"+ (j * i) / 10 + ".png‘>");	
		}
		out.print("<img src=‘img/"+ (j * i) % 10 + ".png‘></td>");
		//out.print(" &nbsp");
	}
	out.print("</tr>");
	//out.print("<br>");
}
out.print("</table>");
%>
</body>

 结果如下图显示:

技术分享图片

图片数字型的九九乘法表

标签:九九乘法表   样式   style   highlight   idt   bsp   inf   amp   class   

原文地址:https://www.cnblogs.com/liangyaofeng/p/9247270.html

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