using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Programm
{
class main
{
static public void Main()
{
int coordX = 3;
int coordY = 3;
int sizeX = 10;
int sizeY = 5;
int model = 0;
ConsoleColor text = ConsoleColor.White;
ConsoleColor background = ConsoleColor.Black;
PsCon.PsCon.PrintSquare(model, coordX, coordY, sizeX, sizeY, text, background);
coordX = 14;
model = 1;
PsCon.PsCon.PrintSquare(model, coordX, coordY, sizeX, sizeY, text, background);
coordX = 25;
model = 2;
PsCon.PsCon.PrintSquare(model, coordX, coordY, sizeX, sizeY, text, background);
coordX = 36;
model = 3;
PsCon.PsCon.PrintSquare(model, coordX, coordY, sizeX, sizeY, text, background);
coordX = 47;
model = 4;
PsCon.PsCon.PrintSquare(model, coordX, coordY, sizeX, sizeY, text, background);
Console.Write("\n\n");
}
}
}
|