Yıldızlar ile ters piramit yapmak
Yıldızlar ile ters piramit yapmak
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication53
{
class Program
{
static void Main(string[] args)
{
for (int m = 0; m <= 5; m++)
{
for (int n = 0; n <= m; n++)
Console.Write(" ");
for (int z = m * 2; z <= 5 * 2; z++)
Console.Write("*");
Console.WriteLine();
}
Console.ReadKey();
}
}
}
Yorumlar
Yorum Gönder