Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication30;
- /**
- *
- * @author fmi
- */
- public class Circle extends Figure {
- private double r;
- public static final double PI=3.14;
- public Circle(double r){
- this.r = r;
- }
- @Override
- public double calculatePerimeter(){
- return 2*Circle.PI*r;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement