C# While Loop with examples

In this C# program, we will see While Loop with examples.

C# While Loop with examples Code:

private static void Main(string[] args)
        {
            Console.Write("Enter a number between 1-10 : ");
            int input = int.Parse(Console.ReadLine());

            if (input <= 10 && input > 1)
            {
                int i = 1;
                while (i <= input)
                {
                    Console.Write(i.ToString() + ",");
                    i++;
                }
            }
            else
            {
                Console.Write("Invalid number entered.");
            }

            Console.ReadLine();
        }

C# While Loop with examples Output:

CSharp-While-Loop-with-examples

 
Best quality Asp .Net Ajax Control Toolkit tutorials.

Give your valuable comments.

Name
Email
Comment
6 + 4 =
 

About Us | Terms of Use | Privacy Policy | Disclaimer | Contact Us Copyright © 2012-2024 CodingFusion
50+ C# Programs for beginners to practice