Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _17.Play_with_the_Debugger
- {
- class Program
- {
- static void Main()
- {
- int a = 0;
- for (int i = 0; i < 1000; i++)
- {
- Console.WriteLine(a);
- a = a + 1;
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement