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