Syntax
Counting
Iterating
For every
<whitespace>
<type>
<whitespace>
<variable:new name>
<whitespace>
in
<whitespace>
<value:array>
<punctuation>
[loop body]That's what I did.
Examples
Add all the numbers from 1 to 100
Did you know that
Spike
likes
the number
0
?
For every
number
x
from
1
to
100
.
.
.
Spike
now likes
Spike
plus
x
.
That's what I did
!
Java Equivalent
double Spike = 0; for(double x = 1; x < 100; x++){;; Spike = Spike + x; }
Iterate through an array
Did you know that
Berry Punch
likes
the phrase
“Cheerwine”
?
For every
character
c
in
Berry Punch
.
.
.
I said
c
.
That's what I did
!
Java Equivalent
char[] BerryPunch = new char[]{'C','h','e','e','r','w','i','n','e'}; for(char c : BerryPunch){;; System.out.println(c); }