Untitled

 avatar
unknown
plain_text
3 years ago
241 B
7
Indexable
for (int i = 0; i<10; i++)
    {
        for(int j = 0; j<i; j++)
        {
            Console.Write(" ");
        }
        for (int d = 10; d > i; d--)
        {
            Console.Write("*");
        }
        Console.WriteLine();
    }
Editor is loading...