Advertisement
wingman007

OOP2bSurfaceCalculatorParalelepipet

Mar 22nd, 2016
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.77 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ServiceCalculater2b
  8. {
  9.     class Paralelepipet:Shape
  10.     {
  11.         public double A { get; set; }
  12.         public double B { get; set; }
  13.         public double Height { get; set; }
  14.  
  15.         public Paralelepipet(double a, double b , double height)
  16.         {
  17.             A = a;
  18.             B = b;
  19.             Height = height;
  20.         }
  21.  
  22.         public override double CalculateSurface()
  23.         {
  24.             return 2.0 * A * B + 2.0 * Height * A + 2.0 * Height * B;
  25.         }
  26.  
  27.         public override string GetInfo()
  28.         {
  29.             return "I am paralelepipet! A = " + A + " , B = " + B + ", Height = " + Height;
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement