C# program for Nested For Loop






using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main()
        {
            Method1(50);
            Method2(50);
            Method3(50);
        }

        static void Method1(int value)
        {
            if (value >= 10)
            {
                if (value <= 100)
                {
                    Console.WriteLine(true);
                }
            }
        }

        static void Method2(int value)
        {
            if (value >= 10 &&
                value <= 100)
            {
                Console.WriteLine(true);
            }
        }

        static void Method3(int value)
        {
            if (value <= 100 &&
                value >= 10)
            {
                Console.WriteLine(true);
            }
            Console.ReadLine();
        }
     
    }
}


Output :





Previous Post Next Post