<!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=utf-8" /> <title>作业2</title> <script type="text/javascript"> /*计算1-1000之间能被3整除的偶数的个数 (1)先输出1-1000间的所有数 (2)能被3整除,并且是偶数(i%2==0) (3)统计偶数的个数 */ //1.定义变量 初始化 var i=1; var n=0; //个数 while( i <=1000 ) { if( i%3==0 && i%2==0 ) { n++;//展开:n=n+1 变量的更新,不然死循环 } i++; // 展开:i=i+1 变量的更新,不然死循环 } document.write(n); </script> </head> <body> </body> </html>
本文出自 “UI大师” 博客,请务必保留此出处http://475281641.blog.51cto.com/11320682/1775572
原文地址:http://475281641.blog.51cto.com/11320682/1775572