Advertisement
calcpage

C4X3_IceCreamCone.java

Oct 19th, 2011
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. //IceCreamCone.java MrG 2011.1018
  2. public class IceCreamCone
  3. {
  4.     private double h;
  5.     private double r;
  6.    
  7.     public IceCreamCone(double h, double r)
  8.     {
  9.         this.h=h;
  10.         this.r=r;
  11.     }
  12.  
  13.     public double getVolume()
  14.     {
  15.         return Math.PI*r*r*h/3;
  16.     }
  17.  
  18.     public double getSurfaceArea()
  19.     {
  20.         return Math.PI*r*Math.sqrt(h*h+r*r);
  21.     }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement