Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title> Série de Fibonacci </title>
  6. <style>
  7. body
  8. {
  9. background: rgba(74, 32, 172, 0.31);
  10. font: "Times new Roman", Verdana, Arial;
  11. text-decoration: none;
  12. text-shadow: 1px 1px 1px;
  13. color: #000000;
  14. text-align: center;
  15. font-weight: 200px;
  16. font: 22px;
  17. }
  18. a
  19. {
  20. text-decoration: none;
  21. color: #006699;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <?php
  27. $posicao = $_GET['posicao'];
  28. $a = 0;
  29. $b = 1;
  30. $c = 1;
  31. $i = 1;
  32. while ($i <= $posicao )
  33. {
  34. $c = $a + $b;
  35. $a = $b;
  36. $b = $c;
  37. echo($c. ",");
  38. $i++;
  39. }
  40.  
  41. ?>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement