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 Program
- {
- static void Main()
- {
- Sphere sph1 = new Sphere(1.2);
- Paralelepipet par1 = new Paralelepipet(1.2 , 3.4, 4.5);
- Console.WriteLine("{0} ! Surface = {1}", par1.GetInfo(), par1.CalculateSurface());
- Console.WriteLine();
- Console.WriteLine("Radius = {0} ! Surface = {1}" , sph1.GetInfo(), sph1.CalculateSurface());
- Console.WriteLine();
- Calculator ultimateCalc = new Calculator();
- ultimateCalc.Report();
- ultimateCalc.Shape = new Sphere(2.3);
- ultimateCalc.Report();
- ultimateCalc.Shape = new Paralelepipet(2.0,3.0,4.0);
- ultimateCalc.Report();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement