编写javascript小程序在屏幕上显示100以内6的倍数,要求每行打印6个。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写javascript小程序在屏幕上显示100以内6的倍数,要求每行打印6个。相关的知识,希望对你有一定的参考价值。
<!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>无标题文档</title>
</head>
<body>
<script language="javascript">
var j=0;
for(var i=1;i<=100;i++)
if(i%6==0)
if(j<6)
document.write(i+",");
j++;
if(j==6)
document.write("<br />"+i+",");
j=1;
</script>
</body>
</html> 参考技术A <script type="text/javascript">
function ints(num,range,brnum)
for(var i=1;i < Math.floor(range/num);i++)
if(i%brnum==1)
document.write("<br/>")
document.write(i*num+",");
ints(6,100,6)
</script>这是我刚写的一个涵数。。第一参数是 要求倍数的那个数字。。在这里是6 第二个参数是范围。
第三个数是打印多少换行。。不传第三个参数默契认不换行。
以上是关于编写javascript小程序在屏幕上显示100以内6的倍数,要求每行打印6个。的主要内容,如果未能解决你的问题,请参考以下文章