C# Console ile yıldız,desen,üçgen vb çalışmalar -12-İçi Boş üçgen yapma
C# Console ile yıldız,desen,üçgen vb çalışmalar -14-İçi Boş üçgen yapma
{
static void Main([] args)
{
int i, j;
int MAX = 10;
for (i = ; i <= ; i++)
{
for (j )
{
Console.Write(" ")
}
for (j = 1; j <= (2 * i - 1); j++)
{
if (i == MAX || j == 1 || j == (2 * i - 1))
{
Console.Write("*")
}
else
{
Console.Write(" ")
}
}
Console.WriteLine()
}
Console.ReadLine()
}
<center>CIKTI </center>
*
* *
* *
* *
* *
* *
* *
* *
* *
*******************
}