Advertisement
Kalciphoz

For Loops

Jun 30th, 2016
2,822
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. //for-loop structure
  2. for (initializer; condition; iterator)
  3. {
  4.     //Loop body - repeated upon every iteration, as long as the condition is met.
  5. }
  6.  
  7. //for-loop example
  8. for (int i = 0; i < 5; i++)
  9. {
  10.     Console.WriteLine("Iteration: " + i.ToString());
  11. }
  12. //OUTPUT:
  13. //Iteration: 0
  14. //Iteration: 1
  15. //Iteration: 2
  16. //Iteration: 3
  17. //Iteration: 4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement