打印正方形和三角形

Posted bingbing-deng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打印正方形和三角形相关的知识,希望对你有一定的参考价值。

 1 <!DOCTYPE html>
 2 <html>
 3 <head lang="en">
 4     <meta charset="UTF-8">
 5     <title></title>
 6 </head>
 7 <body>
 8 <script>
 9 
10 //    document.write("☆")
11 //    document.write("☆")
12 //    document.write("☆<br>")
13 //
14 //    document.write("☆")
15 //    document.write("☆")
16 //    document.write("☆<br>")
17 //
18 //    document.write("☆")
19 //    document.write("☆")
20 //    document.write("☆")
21 
22     //需求:打印宽9,长9的正方形。
23 //for(var k=1;k<=9;k++){
24     for(var j=1;j<=9;j++){
25         for(var i=1;i<=9;i++){
26             document.write("☆");
27         }
28         document.write("<br>");
29     }
30 //    document.write("<br>");
31 //}
32 
33 
34 document.write("<br>");
35 
36     //需求:打印三角形(外循环控制行,内循环控制列)
37     for(var j=1;j<=9;j++){
38         for(var i=1;i<=j;i++){
39             document.write("☆");
40         }
41         document.write("<br>");
42     }
43 
44 
45 </script>
46 </body>
47 </html>

 

以上是关于打印正方形和三角形的主要内容,如果未能解决你的问题,请参考以下文章

初学习-python打印乘法表正方形三角形

JavaScript-页面打印正方形,各种三角形与菱形

P5725 深基4.习8求三角形

python学习,打印等腰直角三角形 实心正方形空心正方形

打印各种图案~

打印各种图案~