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 Calculator
- {
- public Shape Shape { get; set; }
- public void Report()
- {
- if (Shape == null)
- {
- Console.WriteLine("No shape!!!");
- }
- else
- {
- Console.WriteLine("{0} ,Surface = {1}" , Shape.GetInfo() , Shape.CalculateSurface());
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment