<html>
<head>
<script language="JavaScript">
<!--
// -->
</script>
</head>
<body>
<script language="JavaScript">
<!--
function ourner(name,flight)
{
this.nm=name
this.flt=flight
this.pt=print
}
function print()
{
document.write(this.nm, "의", "<br>")
document.write("비행기의 색깔은 ",this.flt.cr01,"이고,<br>")
document.write("비행기의 길이는 ",this.flt.ht01,"(m)이고,<br>")
document.write("비행기의 무게는 ",this.flt.wt01,"(t)이다,<br>")
}
function flight(cr,ht,wt)
{
this.cr01=cr
this.ht01=ht
this.wt01=wt
this.pt=print
}
myflight=new flight("청색",30,1)
myflight2=new flight("홍색",20,2)
our_flight=new ourner("우석",myflight)
our_flight2=new ourner("영은",myflight2)
our_flight.pt()
our_flight2.pt()
// -->
</script>
</body>
</html>
2002-12-15 에 작성한 파일인데, 어디서 보고 연습한 거지?? ㅎㅎㅎ
'나머지는 여기에' 카테고리의 다른 글
2003-06-05 (0) | 2005.01.02 |
---|---|
구슬 게임 - 하아... 이것도 정말~~ (0) | 2005.01.02 |
고기 굽기 게임 후 (0) | 2005.01.02 |
다음 공지에 내가 떴다! (0) | 2005.01.02 |
훈련병 윤계상 동영상 (0) | 2005.01.01 |