using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dikdortgen
{
class Program
{
static void Main(string[] args)
{
for (int j = 1; j <= 7; j++)
{
for (int i = 1; i <= 17; i++)
{
if (i == 1 || i == 17)
{
Console.Write("*");
}
else
{
if (j == 1 || j == 7)
{
Console.Write("*");
}
else
{
Console.Write(" ");
}
}
}
Console.WriteLine();
}
}
}
}

0 Yorumlar