Monday 10/3/2016
- Aidan James
- Oct 3, 2016
- 1 min read
today I learned about Loops and made three programs using the three different types of loops: FOR, WHILE, and DO..WHILE. The differences between these being in layman's terms: WHILE loops repeats a statement or a group of statements until a certain condition is fulfilled. FOR loops executes a sequence of statements multiple times. DO..WHILE loops are like WHILE loops except it test the loop at the end of the body. here are the three programs I made.



Commenti