Guest User

Untitled

a guest
Jun 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace ConsoleApplication1
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             int x = 0;
  12.             for (int i = 0; i < 5; i++)
  13.             {
  14.                 x++;
  15.                 Console.WriteLine(x);
  16.             }
  17.             Console.ReadLine();
  18.         }
  19.  
  20.     }
  21. }
Add Comment
Please, Sign In to add comment