Repeat Loops, Part II
Thunkable
DragAndDropCode.com, David Wolber
Repeat While
Repeat blocks inside “do” while condition remains true (0 or more times)
Some boolean condition
DragAndDropCode.com, David Wolber
Trace the following code
What is the value of “number” and “total” after each iteration?
DragAndDropCode.com, David Wolber
Repeat Loops Similar to Slideshow
“number” is the index, incrementing, comparing to limit
DragAndDropCode.com, David Wolber
Demo: Add up a List with “Repeat While”
Add up a List with “for each item in list”:
DragAndDropCode.com, David Wolber