Hi guys,

I need help.. I want to write a code for drawing me rectangles ..

And I need to make 2 functions one for not fill rect and the other is for fill rect ..


I just started to write some draft
please any help be more then welcome ..


public class Rectangle {
private int width , height;
public Rectangle (int w, int h) {
width = w;
height = h;
}
}

 
for example   
draw for (4,4)  

****
* *
* *
****
 

 
drawFilled   for (5,5)

*****
*****
*****
*****
*****