public static void Main(string[] args)
public static void DrawPyramid(int n)
Console.Write("Create a pyramid! Enter ONE letter or a symbol to make one! ");
sym = Console.ReadLine();
for (int i = 1; i <= n; i++)
for (int j = i; j <= n; j++)
for (int k = 1; k <= 2 * i - 1; k++)
Console.Write( sym + " ");