Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

/*************************************************************************

* C# Do While Loop Example


*
*************************************************************************/
using System;
namespace MyProject.Examples
{
class ExampleOne
{
static void Main()
{

Console.Write("Please Enter a Number ");


int no = int.Parse(Console.ReadLine());
int count=0;
int count1 = 0;
while (count < no)
{
Console.Write("While Number : {0} \n", count);
count++;
}

do{
Console.Write("Do while Number : {0} \n", count1);
count1++;
} while (count1 < no);

Console.ReadKey();
}
}
}

You might also like