Advertisement
wingman007

Java - JavaApplication30 Circle.java

Dec 13th, 2013
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.44 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication30;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public class Circle extends Figure {
  12.    
  13.     private double r;
  14.    
  15.     public static final double PI=3.14;
  16.    
  17.     public Circle(double r){
  18.         this.r = r;
  19.     }
  20.    
  21.     @Override
  22.     public double calculatePerimeter(){
  23.         return 2*Circle.PI*r;
  24.     }    
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement