Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Point p1 = new Point(1, 3, '*');
            p1.Draw();

            Point p2 = new Point(4, 5, '#');
            p2.Draw();

            Console.ReadLine();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Point p1 = new Point(3, 4, '$');
            p1.Draw();

            Point p2 = new Point(6, 8, '#');
            p2.Draw();

            Console.ReadLine();
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            Point p1 = new Point(1,3,'*');
            /*p1.x = 1;
            p1.y = 3;
            p1.sym = '*';*/
            p1.Draw();

            Point p2 = new Point(4,5,'*');
               /* p2.x = 4;
            p2.y = 5;
            p2.sym = '*';*/
            p2.Draw();

            Console.ReadLine();
        }