Vipin Samuel
New member
<script Language=”vbscript”>
Function magic(a,b)
a=a+b
b=a-b
magic = a*b
end function
dim x, y
x=magic(1,2)
y=magic(3,5)
document.write(x & “<br>”)
document.write(y & “<BR>”>
</script>
<SCRIPT LANGUAGE=”VBScript”>
B=10
For A = 1 TO 12 STEP 3
C = A + B
Document.write( C )
B=B-1
Document.write(“<BR>”)
NEXT
</SCRIPT>
Function magic(a,b)
a=a+b
b=a-b
magic = a*b
end function
dim x, y
x=magic(1,2)
y=magic(3,5)
document.write(x & “<br>”)
document.write(y & “<BR>”>
</script>
<SCRIPT LANGUAGE=”VBScript”>
B=10
For A = 1 TO 12 STEP 3
C = A + B
Document.write( C )
B=B-1
Document.write(“<BR>”)
NEXT
</SCRIPT>