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>
nginx下No input file specified错误的解决
【Git】删除某个全局配置项
windows7使用Sphinx+PHP+MySQL详细介绍
TortoiseGit需要重复填写用户名和密码的问题
【算法】字符串数组的排序时间复杂度问题
java随机生成6位随机数 5位随机数 4位随机数
Linux下MySQL报Table 'xxx' doesn't exist错误解决方法,表名存在大小写区分
Cannot find ./catalina.sh The file is absent or does not have execute permission This file is nee
Linux 服务器安装jdk,mysql,tomcat简要教程