Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 317 Bytes

README.md

File metadata and controls

7 lines (7 loc) · 317 Bytes

Fibonacci_Number

#generating the first n Fibonacci numbers F(n), printing ...

..... "Buzz and Fizz on separate line when F(n) is divisible by 3 and 5 both

#- ... "Buzz" when F(n) is divisible by 3. #- ... "Fizz" when F(n) is divisible by 5. #- ... "BuzzFizz" when F(n) is prime. #- ... the value F(n) otherwise.