пишет что конструктор уже объявлен 15 строка
package com.javarush.task.task05.task0520;
/*
Создать класс прямоугольник (Rectangle)
*/
public class Rectangle {
//напишите тут ваш код
private int height, left, top, width;
public Rectangle(int top, int left, int height, int width)
{this.height = height; this.left = left; this.top = top; this.width = width;}
public Rectangle(int height, int left)
{this.height = height; this.left = left;}
public Rectangle(int top, int height)
{this.top = top; this.height = height;}
public Rectangle(int top)
{this.top = top;}
public static void main(String[] args)
{
}
}