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: