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