static void Task()
{
string x = "*";
for (int i = 0; i < 4; i++)
{
Console.WriteLine(x);
x += "*";
}
}
it output
*
**
***
****
how damn reverse it only with "for" loop ? especially with included loop...
it's ok now
for (int i = 4; i > 0; i--)
{
for (int j = 1; j <= i; j++)
Console.Write("*");
Console.WriteLine();
}