Saturday 25 January 2014

example program for do-while loop

3)Do-While Loop:
<html>
<head>
<title>
Program on Do While Loop
</title>
</head>
<script language=javascript>
var n=10,i=1
document.write("<center><font color=navy size=6>")
document.writeln("Do While Loop Example<br><br>")
do
{
document.writeln(i+"<br>")
i++
}
while(i<=n)
</script>
</html>

No comments:

Post a Comment