wingman007

OOP2bSurfaceCalculatorSphere

Mar 22nd, 2016
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 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 Sphere:Shape
  10.     {
  11.         public double Radius{get; set;}
  12.  
  13.         public Sphere(double radius)
  14.         {
  15.             Radius = radius;
  16.         }
  17.  
  18.         public override double CalculateSurface()
  19.         {
  20.             return 4.0 * Math.PI * Radius * Radius;
  21.         }
  22.  
  23.         public override string GetInfo()
  24.         {
  25.             return "I am sphere ! Radius = " + Radius;
  26.         }
  27.     }
  28. }
Add Comment
Please, Sign In to add comment