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 Sphere:Shape
- {
- public double Radius{get; set;}
- public Sphere(double radius)
- {
- Radius = radius;
- }
- public override double CalculateSurface()
- {
- return 4.0 * Math.PI * Radius * Radius;
- }
- public override string GetInfo()
- {
- return "I am sphere ! Radius = " + Radius;
- }
- }
- }
Add Comment
Please, Sign In to add comment