Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. count = 0
  2. f1 = 0
  3. f2 = 1
  4. print f1 + " , "
  5. print f2 + " , "
  6. while count < 33 do
  7.     f3 = f2 + f1
  8.     print f3 + ","
  9.     f1 = f2
  10.     f2 = f3
  11.     count = count + 1
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement