js99乘法表

来源:互联网 发布:安卓博洋软件 编辑:程序博客网 时间:2024/05/29 16:31
<!DOCTYPE html><html><head><meta charset="UTF-8"><title></title></head><body><script>for(var w=0; w<5; w++){for(var e=0; e<5; e++){document.write("*");}document.write('<br>');}document.write('<br>');for(var w=1; w<=9; w++){for(var e=1; e<=w; e++){document.write(w+"*"+e+"="+w*e+" ");}document.write('<br>');}document.write('<br>');document.write('<br>');document.write('<br>');for( var m=1; m<=9; m++){for (var b=1; b<=m; b++){document.write(m+"*"+b+"="+m*b+" ")}document.write('<br>');}</script></body></html><!--for (循环变量初始化表达式; 循环条件表达式; 更新循环变量表达式) {    循环体}-->

原创粉丝点击