Drawing A Hollow Rectangle Using Java
hello people, here is easy code for drawing a hollow rectangle using java. this code displays a rectangle of given length and width. Sample input: 4 5 Sample output ***** * * * * ***** import java.util.Scanner; public class hollowRectangle{ [...]