Showing posts with label while. Show all posts
Showing posts with label while. Show all posts

While loop in C#


//While loop in C#

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int x = 1;
            while (x != 6)
            {
                Console.Write(x + " ");
                x++;
            }
        }
    }
}