Yıldız karakteri ile K harfi oluşturma — Csharp Console — C#
[code lang=”csharp”]
using System;
using System.Collections.Generic;
using System.Linq;//www.gorselprogramlama.com
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
string y = "";
for (int i = 5; i >0; i–)
{
y = "";//www.gorselprogramlama.com
for (int j = 5; j>5-i; j–)
{
y += "<a href="https://www.gorselprogramlama.com/wp-content/uploads/2017/12/yildiz_ile_k_harfi.jpg">
</a>*";
}
Console.Write( y+"\n");
}
y = "";
for (int i = 0; i < 5; i++)
{
y = "";//www.gorselprogramlama.com
for (int j = 5; j >= 5 – i; j–)
{
y += "*";
}
Console.Write(y + "\n");
}
Console.ReadKey();
}
}
}
[/code]
