Thursday, 15 October 2015

Continue statement in C#

using System;
class Program
{
    public static void Main()
    {
        int target=100;
        int i=10;
        while (i <= target)
        {
            Console.WriteLine(i);
            i = i + 10;
            if (i == 50)
            {
                continue;
            }
           
           
        }
     
    }
}

No comments:

Post a Comment