Advertisement
wingman007

C#_OOP_2a_Circle.cs

Mar 22nd, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace OOPGeometry2
  7. {
  8.     class Circle : Figure
  9.     {
  10.         private double r;
  11.  
  12.         public double R
  13.         {
  14.             get { return r; }
  15.             set { r = value; }
  16.         }
  17.  
  18.         public Circle(double r)
  19.             : base("Circle")
  20.         {
  21.             this.r = r;
  22.         }
  23.  
  24.         public override double CalculateSurface()
  25.         {
  26.             return r * r * Math.PI;
  27.         }
  28.     }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement