using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.Write("enter a: ");
int a = int.Parse(Console.ReadLine());
int inter = a;
inter--;
for (int i = 0; i < a; i++)
{
for (int j = 0; j < a; j++)
{
if (j < inter)
{
Console.Write(" ");
}
else if (j == inter || i == a - 1 || j == a - 1)
{
Console.Write("*");
}
else
{
Console.Write(" ");
}
}
inter--;
Console.WriteLine();
}
Console.WriteLine();
}
}
}
using System;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.Write("enter a: ");
int a = int.Parse(Console.ReadLine());
int inter = a;
inter--;
for (int i = 0; i < a; i++)
{
for (int j = 0; j < a; j++)
{
if (j < inter || )
{
Console.Write(" ");
}
else
{
Console.Write(" *");
}
}
inter--;
Console.WriteLine();
}
Console.WriteLine();
}
}
}
если его запустить и ввести цифру тогда нарисуется равнобедренный треугольник но его надо сделать пустым помогите пж