コード例 #1
0
ファイル: Startup.cs プロジェクト: xuan2261/CSharp-OOP-Basics
        public static void Main()
        {
            double length = double.Parse(Console.ReadLine());
            double width  = double.Parse(Console.ReadLine());
            double height = double.Parse(Console.ReadLine());

            Box box = new Box(length, width, height);

            box.CalculateSurfaceArea();
            box.CalculateLateralArea();
            box.CalculateVolume();
        }