메뉴 건너뛰기

app

[js] 테이블로 그래프 그리기 및 지수승 함수

박영식2007.06.09 10:51조회 수 4444댓글 0

  • 1
    • 글자 크기
<script>
var iq_i = 0;
while(iq_i<128){
 var iq = Math.pow(iq_i,4/3);  // 4/3승 하기
//---------테이블로 만든 그래프-----//
 document.write("<table cellpadding=0 cellspacing=0 width=" + iq + " bgcolor=gray border=0>");
 document.write("<tr><td></td></tr></table>");
//---------테이블로 만든 그래프-----//
 iq_i++;
}
</script>

박영식 (비회원)
  • 1
    • 글자 크기

댓글 달기

이전 1 ... 5 6 7 8 9 10 11 12 13 14다음
첨부 (1)
exp.JPG
5.5KB / Download 316
위로