Yıldız ile ters dik üçgen oluşturma — C# Console
[code labg=”csharp”]
using System;
using System.Collections.Generic;
using System.Linq;//www.gorselprogramlama.com
using System.Text;
namespace ConsoleApplication10
{
class Program
{
static void Main(string[] args)
{
for (int i = 0; i < 5; i++)
{
for (int j = 5; j > i; j–)
{
Console.Write("*");//www.gorselprogramlama.com
}
Console.Write("\n");
}
Console.ReadLine();
}
}
}
[/code]
