Learn All Programming and Scripting languages inside Our Blog, learn all BCA, MCA, B.E.IT, B.E.CE programs here Our Youtube Channel: youtube.com/avadhtutor
<?php
/* 1,2,4,7,11,16...n. */
$l=1;
$a=1;
$b=1;
while($l<=10)
{
print"<br>".$a;
$a=$b+$a;
$b++;
$l++;
}
?>
No comments:
Post a Comment