Miyerkules, Enero 11, 2012

C# ConApp 9: Count 1 to 100

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

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
for (int i = 1; i < 101; i++)
{
Console.WriteLine(i);

}
Console.ReadKey();

}
}
}

Walang komento:

Mag-post ng isang Komento