For and While Loops

Channel:
Subscribers:
2,640
Published on ● Video Link: https://www.youtube.com/watch?v=iXuiR_peVqE



Duration: 1:16:36
196 views
2


Today we learned two key elements of C++: for loops and while loops.


Even though you can kinda do whatever with whichever in C++, I mentally divide loops into two categories:
1) When I know how many times I need to repeat something, like 50: in which case I use a for loop.
2) When I don't know how many times a loop will run: in which case I use a while loop.


We go through the syntax here and give plenty of lab time to work on exercises.







Tags:
csci 40
loops
for loops
while loops