package com.codegym.task.task05.task0513;
/*
Let's put together a rectangle
*/
public class Rectangle {
//write your code here
private int top ;
private int left;
private int width;
private int height;
public void initialize(int top){
this.top = top;
}
public void initialize(int top, int left){
this.top = top;
this.left = left;
width = 0;
height = 0;
}
public void initalize(int top , int left , int width){
this.top = top;
this.left = left ;
this.width = width;
height = width;
}
public void initalize(int top,int left,int height,int width){
this.left= left;
this.top = top;
this.height = height;
this.width = width;
}
public static void main(String[] args) {
}
}