- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>99乘法表</title>
- </head>
- <script>
- function chengji(){
- for(i=1;i<10;i++)
- {
- for(j=1;j<10;j++)
- {
- if(j<=i){
- document.write(j+"*"+i+"="+j*i)
- document.write(" ")
- }
- }
- document.write("<br>")
- }
- }
- </script>
- <body>
- <a href="javascript:chengji()">99乘法表</a>
- </body>
- </html>
99乘法表
最新推荐文章于 2025-08-15 09:01:53 发布