Advertisement
wingman007

OOP2bSurfaceCalculatorProgram

Mar 22nd, 2016
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.93 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 Program
  10.     {
  11.         static void Main()
  12.         {
  13.             Sphere sph1 = new Sphere(1.2);
  14.  
  15.             Paralelepipet par1 = new Paralelepipet(1.2 , 3.4, 4.5);
  16.  
  17.             Console.WriteLine("{0} ! Surface = {1}", par1.GetInfo(), par1.CalculateSurface());
  18.  
  19.             Console.WriteLine();
  20.  
  21.             Console.WriteLine("Radius = {0} ! Surface = {1}" , sph1.GetInfo(), sph1.CalculateSurface());
  22.  
  23.             Console.WriteLine();
  24.  
  25.             Calculator ultimateCalc = new Calculator();
  26.            
  27.             ultimateCalc.Report();
  28.  
  29.             ultimateCalc.Shape = new Sphere(2.3);
  30.             ultimateCalc.Report();
  31.  
  32.             ultimateCalc.Shape = new Paralelepipet(2.0,3.0,4.0);
  33.             ultimateCalc.Report();
  34.          
  35.         }
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement