Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Scratch Cookbook

You're reading from   Scratch Cookbook If want to get your programming know-how off the starting blocks in a fun, involving way, then this guide to Scratch is perfect. In no time you'll be building your own interactive programs that include animations and sound.

Arrow left icon
Product type Paperback
Published in Jul 2013
Publisher Packt
ISBN-13 9781849518420
Length 262 pages
Edition 1st Edition
Languages
Concepts
Arrow right icon
Author (1):
Arrow left icon
Brandon Milonovich Brandon Milonovich
Author Profile Icon Brandon Milonovich
Brandon Milonovich
Arrow right icon
View More author details
Toc

Table of Contents (17) Chapters Close

Scratch Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Getting Started with Scratch FREE CHAPTER 2. Storytelling 3. Adding Animation 4. Basic Gaming 5. Spicing up Games 6. Bringing in Sound 7. Integrating PicoBoards 8. Programming to Calculate 9. Project Remixing Collaboration Index

Generating Fibonacci numbers


You might be asking yourself what Fibonacci numbers are. What we're talking about is a sequence of numbers generated recursively (that means through repeated computations). Each new Fibonacci number is computed by summing the previous two numbers. The set begins with 0 and 1, and then builds from there.

If we compute the first few ourselves, we'd have:

Third number = First number + Second number = 0 + 1 = 1

This leads to the sequence 0, 1, 1, 2, 3, 5, 8, 13, 21, …

Getting ready

We can see that generating these Fibonacci numbers can be a tedious task, particularly if we wanted to generate a lot of them. Luckily, we can use Scratch to generate as many Fibonacci numbers as we want.

Here, we will create a program that will do that for us (generating a maximum of 1,000 Fibonacci numbers). The output of these numbers will be a list of all Fibonacci numbers generated.

How to do it...

Follow these steps to work through this recipe:

  1. Open a new Scratch file.

  2. Create a new variable...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image