4. Starting from Scratch¶
To begin our journey into programming, we will use Scratch, a system developed the MIT media lab to teach how to program to kids.
A great advantage of Scratch is that programs are created using a graphical interface, preventing syntactic errors. Thus, you can learn the language without having to learn its grammar!
One can either work online at https://scratch.mit.edu/projects/editor/?tip_bar=home or offline, by downloading Scratch at
https://scratch.mit.edu/scratch_1.4/ (version 1)
https://scratch.mit.edu/scratch2download/ (version 2)
We recommend the reader to run the tutorial “Getting Started with Scratch”
4.1. First steps¶
4.1.1. Program 001¶
In the motion
group, take the instruction turn 15 degrees
and drag
it onto the Scripts
panel.
Double-Click repeatedly on the block turn 15 degrees
, you should see
the cat (sprite 1
) rotate.
In Scratch, when one double-clicks an instruction in the Scripts
panel, the computer executes it.
4.1.2. Program 002¶
Drag the instruction move 10 steps
from the motion group, and add it
to the bottom of the instruction turn 15 degrees
. Change the value
10
into 50
.
You have just created a block of instructions, that is, your first program or script, Bravo!
Double-Click on the block and see the sprite moving.
Note that inside a block, instructions are exectuted sequentially, one after the other. Can you prove it?
Experiment with changing the argument of the instruction
move
(Tip: to clear the drawing area, move the instructionpen/clear
to the script window and execute it)
4.1.4. Program 004¶
Construct the following scripts and play with them until you are sure to understand the behavior of the computer..
4.2. Concepts learned so far¶
Instruction
Argument of an instruction (change
10
inmove 10 steps
)Block of instructions and sequential execution
4.3. Loops¶
4.3.1. repeat (for
loop)¶
Computers are good at doing tasks repeatedly (as they do not get tired).
Click on the “Control” group, and try to construct the following script:
Clicking on the
green
flag will execute the block of instructionsThe
Repeat
instruction executes the inner block of instruction a number of times specified as an argument. This is called a loopAdjust the parameter of the Repeat instruction so that the sprite draws a full circle when you click once on the green flag.
Replace the repeat instruction by
forever
.
4.3.2. Repeat until¶
Modify the script as follows:
Tip: the condition key space pressed?
is in the Sensing
group.
This illustrates a repeat…until loop: the inner block is executed until the condition is satisfied.
4.4. Two sprites¶
Add a new sprite, and duplicate the script from sprite1. Click on the green flag. You should see the two sprites running in circles.
Remark that the scripts associated to the two sprites run in parallel (rather than sequentially).
4.5. Conditional execution or branching¶
Create a new scratch project, and change the costume of the sprite into a ball.
Then write and execute the following script.
You should see the ball bounce on the edges.
4.6. First series of exercices¶
With Scratch, use the instructions “pen down” and “move” and “turn” to (a) make the cat draw a square (with sides measuring 100 steps) (b) draw an hexagon (c) draw a circle
Using the Control/Forever, make the cat turn continuously along a circle.
Bouncing ball
Delete the cat. Using new sprite/open, add a ball.
Make the ball move automatically horizontally from left to right and bounce when it touches an edge (tip: use Control/forever)
Make the ball follow the mouse.
Add a second ball that follows the first.
Create a script that asks for your name and then displays “Hello !”. Tip: use the instructions
sensing/ask
,looks/say
andoperator/join
and the variablesensing/answer
.
…
…
4.7. Variables¶
Using the group variable
, we are going to create a variable a
and make it display continuously the x-coordinate of the ball.
The concept of variable is very important. You can think of it as a name for a object that can change (here the object is a number).
Now study the following script:
The loop is executed 100 times. Each time, the value of the variable
a
is incremented by 1, and is used to compute new x
and y
coordinates where to sprite is instructed to moved to.
4.8. Second series of exercices¶
4.8.1. Multiplication¶
“Multiply by adding”: Write a program that reads in two integer numbers and displays their sum.
4.8.2. Guess a number¶
“Guess a number”. Make Scratch pick up a random number in the interval [1,100],
and loop asking you for a guess and reply either too low
, too high
, or
you win!
depending on your answer.
4.8.3. Estimate PI¶
We are going to estimate the number PI by a Monte Carlo method.:
Repeatly (e.g. 2000 times) picks up two random numbers on the interval [-1, 1]. This corresponds to a dot inside a square of size 2x2.
Count how many times the dot falls within the circle of radius 1 centered on the origin (Pythagore helps you here: the dot is within the circle iff
(x * x + y * y) < 1
.)The proportion of dots falling within the circle, multiplied by four (the area of the square), is an estimate of teh area of the disk, that is, the number pi.