用js实现九九乘法口诀两种方式 - 写代码也要酷酷的

时间:2024-04-16 09:45:18

js实现九九乘法口诀两种方式:

第一种是用户输入一个数弹出所对应的乘法口诀:

1 <script type="text/javascript">
2             function art(){
3             var i=parseInt(prompt("请输入"));
4             for(var j=1;j<=i;j++){
5                 document.write(j+"*"+i+"="+(j*i)+"\n");
6             }
7 </script>

第二种是直接出现全部乘法口诀:

 1 <script type="text/javascript">
 2     function art(){
 3         for(var j=1;j<=9;j++){
 4     //插入换行
 5          document.write("<br/>");
 6             for(var i=1;i<=j;i++){
 7             document.write(i+"*"+j+"="+(i*j)+"\n");
 8                 }
 9             }
10         }     
11 </script>  

 

posted on 2019-02-27 15:47  写代码也要酷酷的  阅读(528)  评论(0编辑  收藏  举报