Saturday, November 7, 2009

DO WHILE STATEMENT

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

namespace conditional_statement
{
class Program
{

static void Main(string[] args)
{
int i = 0;
do
{
Console.WriteLine(i);
i++;
}
while(i<=10);

}
}
}

No comments:

Post a Comment