コード例 #1
0
ファイル: Program.cs プロジェクト: AlexanderDimitrov/OOP
 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);
 }
コード例 #2
0
ファイル: Point3D.cs プロジェクト: AlexanderDimitrov/OOP
 static Point3D()
 {
     StartingPointC = new Point3D(0, 0, 0);
 }