Simple line ladder in C#
static void Main(string[] args)
{
for (int a = 1; a <=10; a++)
{
Console.WriteLine("*");
}
Console.ReadLine();
}
Output:
http://
http://
Contributed by:
Rohit kakria
I am software developer, moderator of xpode.com
Resourse address on xpode.com
http://www.xpode.com/Print.aspx?Articleid=400
Click here to go on website
|