A Java nested loop question. Please Attention.
"Write a program that draws a diamond shape according to the number you read as seen below. The program will readone int value (lineCount). This number will define the number of lines that will be on the TOP SIDE of the diamondshape (including the center line).
HINT: You MUST use a nested loop (i.e., for inside a for, while inside a while) in this question."