Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. $count = 0 ;
  3. $f1 = 0;
  4. $f2 = 1;
  5.  
  6. echo $f1." , ";
  7. echo $f2." , ";
  8.  
  9. while ($count < 5 ){
  10. $f3 = $f2 + $f1 ;
  11. echo $f3." , ";
  12. $f1 = $f2 ;
  13. $f2 = $f3 ;
  14. $count = $count + 1;
  15. }
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement