Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 280 Bytes

exercise2.md

File metadata and controls

7 lines (6 loc) · 280 Bytes

Loops Exercise 2

  1. Use a while loop and a counter variable i.
  2. Initialize i to an initial value of 0.
  3. Stay in the while loop until i is greater than 49.
  4. Increment i each time through the while loop.
  5. Print out i (except don't print out i when it is 13).