Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. public class Circle {
  2.     private double x,y,radius;
  3.     public Circle(double x, double y, double radius) {
  4.         this.x = x;
  5.         this.y = y;
  6.         this.radius = radius;
  7.     }
  8.  
  9.     public Circle(double x, double y, double length) {
  10.  
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement