Sunday 24 January 2021

VBScript Class - 6

 VBScript Class - 6 by S P SHARMA CLASSES (7048972696)


<html>

<body>

<script type="text/VBScript">


for i=1 to 5

document.write(i)

next

document.write("<br/><br/>")


for i=1 to 10

document.write(i)

i=i+2

next


document.write("<br/><br/>")


for i=1 to 10 step 2

document.write(i)

next


document.write("<br/><br/>")


for i=10 to 1 step -1

document.write(i)

next

</script>

</body>

</html>

No comments:

Post a Comment