Fundamentals of Programming
Human Computer Interaction

Loops

1. Sequence Printer

A For Loop that prints numbers from 1 up to N.

Output:
...

2. Multiplication Table

A For Loop that generates the multiplication table for a number.

Output:
...

3. Word Repeater

A While Loop that repeats a word a specific number of times.

Output:
...

4. Blastoff Countdown

A Do-While Loop that counts down to launch.

Output:
...

5. Sum of 1 to N

A For Loop that adds up all numbers from 1 to N.

Output:
...