*
* *
* * *
* * * *
* * * * *
class Program
{
static void Main(string[] args)
{
for (int row = 1; row<=5; row++)
{
for (int coll = 1; coll <=row; coll++)
{
Console.Write("*");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
* *
* * *
* * * *
* * * * *
class Program
{
static void Main(string[] args)
{
for (int row = 1; row<=5; row++)
{
for (int coll = 1; coll <=row; coll++)
{
Console.Write("*");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
No comments:
Post a Comment