03 Fibonacci series Program PHP- record

 sava--Fibonacciseries3.php

program:-

<!DOCTYPEhtml>
<html>
<body>
<?php
$n =0;
$a=0;
$b =2;
echo"Fibonacciseries withthe first2numbers as0and 2is:<br> ";
echo"$a,$b";
while($n <26 )
{
$c=$b+$a;
echo", ";
echo"$c";
$a=$b;
$b=$c;
$n =$n +1;
}
?>
</body>
</html>

output:-


 


Comments

Popular posts from this blog

SOFTWARE

e-com sem-3

Unit 2: Foundations of Ownership, Security Related Concepts in Blockchain

Unit-1 Foundations of Software Systems and Blockchain

unit-1 E- Commerce

6)what are the various service of internet and protocols ICT-unit-1

e com partical

Unit-II: HTML Coding Standards & Elements

Unit-V: Image Manipulations, Audio and Video & Introduction to JavaScript

Unit-III: Cascading Style Sheets (CSS) - HTML