пишет что нужно указать тип возврощаемого метода?
package com.javarush.task.task05.task0522;
/*
Максимум конструкторов
*/
public class Circle {
public double x;
public double y;
public double radius;
//напишите тут ваш код
public Cricle(){
}
public Cricle(double x){
this.x = x;
}
public Cricle(double x, double y){
this.x = x;
this.y = y;
}
public Cricle(double x, double y, double radius){
this.x = x;
this.y = y;
this.radius = radius;
}
public static void main(String[] args) {
}
}