Saturday, November 7, 2009

FOR STATEMENT

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

namespace conditional_statement
{
class Program
{

static void Main(string[] args)
{

for (int i = 0; i <= 10; i++)
{
Console.WriteLine(i);
}

}
}
}

No comments:

Post a Comment