Exemplo n.º 1
0
 public static void Main(string[] args)
 {
     double a = double.Parse(Console.ReadLine());
     double b = double.Parse(Console.ReadLine());
     double c = double.Parse(Console.ReadLine());
     var point = new Point3D(a, b, c);
     Console.WriteLine(point);
     Console.WriteLine(Point3D.StartingPoint);
 }
Exemplo n.º 2
0
 static Point3D()
 {
     StartingPointC = new Point3D(0, 0, 0);
 }