본문 바로가기
  • think normal
새로워지기/서른의 생활코딩

샘플소스3) javascript 기본 문서구조 ( 숫자 객체 )

by 청춘만화 2011. 4. 10.

여섯개의 숫자를 뿌려주는 로또번호 생성기 만들기.





<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">




<head>


<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />




<title> 수학 객체 2</title>




<script type="text/javascript">


//<!CDATA[




/*로또번호 구하기 (6번)*/




//특정범위 내 번호 추출공식


//(Math.random()* (가장 큰수 - 가장작은 수 + 1)+가장 작은 수




for(i=0;i<7;i++){


lotto=(Math.random()*45)+1; //0~45사이의 번호로


//document.write(Math.floor(lotto)+"<br />");


document.write(i + "번 째 번호는 :" + Math.floor(lotto)+"<br />");


}


//]]1]]]]>


</script>




</head>






<body>


</body>




</html>



댓글