квадрат

Скрыть

Показать

Копировать
  Main.cs  
  • using System;
  •  
  • class Program {
  •  public static int Main() {
  •   int line;   //строка
  •   int column; //столбец
  •   char fill;  //заполнитель
  •   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++) {
  •     Console.Write(fill);
  •    }
  •    Console.WriteLine();
  •   }
  •   Console.ReadKey();
  •   return 0;
  •  }
  • }
Введите количество строк : 6
Введите количество столбцов : 6
Введите заполнитель : $

$$$$$$
$$$$$$
$$$$$$
$$$$$$
$$$$$$
$$$$$$