1 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 3 <html> 4 <head> 5 </head> 6 <body> 7 <p>用for二重循环输出一个3行5列的table.</p> 8 <table border="1"> 9 <% 10 for (int i = 0; i < 3; i++) { 11 %> 12 <tr> 13 <% 14 for (int j = 0; j < 5; j++) { 15 %> 16 <td>wuhao</td> 17 <% 18 } 19 %> 20 </tr> 21 <% 22 } 23 %> 24 </table> 25 </body> 26 </html>
Android TextView设置个别字体样式
Spring4.0MVC学习资料,注解自己主动扫描bean,自己主动注入bean(二)
Angular团队公布路线图,并演示怎样与React Native集成
[LeetCode]Remove Element
poj2481 Cows
Spark SQL 源代码分析之Physical Plan 到 RDD的详细实现
MySQL5.6 怎样优化慢查询的SQL语句 -- 慢日志介绍
容器使用笔记(List篇)
【Java编程】建立一个简单的JDBC连接-Drivers, Connection, Statement and PreparedStatement