Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. int num = 3;
  2.  
  3. while (num < 10)
  4. {
  5. Console.WriteLine(num);
  6. num++;
  7. }
  8.  
  9. for (int x = 3; x < 10; x++)
  10. {
  11. Console.WriteLine(x);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement