code004.jsp
1<%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3<!DOCTYPE html> 4<html> 5<head> 6<meta charset="UTF-8"> 7<title>代码片段,九九乘法表</title> 8</head> 9<body> 10<% 11 String str = ""; 12 for(int i=1;i<=9;i++) 13 { 14 for(int j=1;j<=i;j++) 15 { 16 str += j + " * " + i + " = " + j*i; 17 str += " "; 18 19 } 20 str += "<br>"; 21 } 22%> 23<table wdith="440" height="85" border="1" cellpadding="0" cellspacing="0" style="font:9pt;" bordercolordark="#666666" bordercolorlight="#ffffff" bordercolor="#ffffff"> 24 <tr> 25 <td height="30" align="center">九九乘法表</td> 26 </tr> 27 <tr> 28 <td style="padding:3pt"> 29 <%= str %> 30 </td> 31 </tr> 32</table> 33 34</body> 35</html>