Wednesday, January 13, 2016

Difference between For and While Loops

For Loop: 
  • fixed repetition loop
  • keeps running when variables change
  • you can change the value of constant (number of times it runs)
  • seperate variable needed
While Loop
  • has a condition
  • if condition not met loop continues
  • statement within loop