Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ServiceCalculater2b
- {
- class Paralelepipet:Shape
- {
- public double A { get; set; }
- public double B { get; set; }
- public double Height { get; set; }
- public Paralelepipet(double a, double b , double height)
- {
- A = a;
- B = b;
- Height = height;
- }
- public override double CalculateSurface()
- {
- return 2.0 * A * B + 2.0 * Height * A + 2.0 * Height * B;
- }
- public override string GetInfo()
- {
- return "I am paralelepipet! A = " + A + " , B = " + B + ", Height = " + Height;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement