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,1,2,3,5,8,13,21....n. */
$a=1;
$b=0;
$c=0;
$l=1;
while($l<=10)
{
$c=$a+$b;
print"<br>".$c;
$a=$b;
$b=$c;
$l++;
}
?>
No comments:
Post a Comment