Advertisement
Devilchild656

Problem 17.

Mar 11th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. using System;
  2.  
  3. namespace _17.Play_with_the_Debugger
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             int a = 0;
  10.  
  11.             for (int i = 0; i < 1000; i++)
  12.             {
  13.                 Console.WriteLine(a);
  14.                 a = a + 1;
  15.             }
  16.         }
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement