пустой квадрат

Скрыть

Показать

Копировать
  Main.cs  
  • using System;
  •  
  • class Program {
  •  public static int Main() {
  •   int line;         //строка
  •   int column;       //столбец
  •   char fill;        //заполнитель
  •   char fill_no=' '; //заполнение пустоты
  •   Console.Write("Введите количество строк    : ");
  •   line=int.Parse(Console.ReadLine());
  •   Console.Write("Введите количество столбцов : ");
  •   column=int.Parse(Console.ReadLine());
  •   Console.Write("Введите заполнитель         : ");
  •   fill=(char)Console.Read();
  •   Console.WriteLine();
  •   for(int i=0; i<line; i++) {
  •    for(int j=0; j<column; j++) {
  •     if(i==0 | j==0 | i==line-1 | j==column-1) {
  •      Console.Write(fill);
  •     }
  •     else {
  •      Console.Write(fill_no);
  •     }
  •    }
  •    Console.WriteLine();
  •   }
  •   Console.ReadKey();
  •   return 0;
  •  }
  • }
Введите количество строк : 6
Введите количество столбцов : 6
Введите заполнитель : *

******
*    *
*    *
*    *
*    *
******