using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Programm
{
class main
{
static public void Main()
{
double count = 1.3;
int X = 10;
int Y = 2;
ConsoleColor text = ConsoleColor.White;
ConsoleColor background = ConsoleColor.Black;
PsCon.PsCon.PrintDouble(count, X, Y, text, background);
Console.Write("\n\n");
}
}
}
|