Ekrana Türkiye Cumhuriyeti Kısaltması TC yazısı yaz — Csharp Console
[code lang=”csharp”]
using System;
using System.Collections.Generic;
using System.Linq;//www.gorselprogramlama.com
using System.Text;
namespace ekrana_TC_yaz
{
class Program
{
static void Main(string[] args)
{
for (int i = 1; i <= 7; i++)
{
for (int j = 1; j <= 14; j++)
{
if (i == 1)
{//www.gorselprogramlama.com
if (j != 10) Console.Write("*");
else Console.Write(" ");
}
else if (i != 1 && i != 7)
{
if (j == 5 || j == 10) Console.Write("*");
else Console.Write(" ");//www.gorselprogramlama.com
}
else if (i == 7)
{
if (j == 5 || j > 10) Console.Write("*");
else Console.Write(" ");
}
}
Console.WriteLine();//www.gorselprogramlama.com
}
Console.ReadKey();
}
}
}
[/code]
