Hey guys,
how are you? I'm well, but could be better because i don't understand why my code doesn't works and what exercise is asking me.
Could someone help me?
Love ya.
package com.codegym.task.task05.task0522;
/*
Max constructors
*/
public class Circle {
public double x;
public double y;
public double radius;
//write your code here
public void Circle(double x, double y, double radius)
{
this.x = x;
this.y = y;
this.radius = radius;
}
public void Circle(double x)
{
this.x = x;
}
public void Circle(double x, double y)
{
this.x = x;
this.y = y;
}
public void Circle()
{
this(4, 4, 4);
this.x = x;
this.y = y;
this.radius = radius;
}
public static void main(String[] args) {
}
}