Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on printing a quasi-empty square that looks like an example below (10 asterisks across and 10 down for the 2 columns):

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

The problem is, my code cannot dynamically generate squares as specified by the user's input for the number of rows and columns (it is working for 10 rows and 10 columns, but as soon as I change the number to 20, the number of the asterisks does not change. The following is my code:

    String STAR = "*";
    String star1 = "**********";
    int MAX = 10;


                for (int row = 0; row <= MAX; row += 1 ){

                    for (int col = 0; col <= MAX ; col += 10) {

                        if (row == 0 && col == 0)
                            System.out.println(star1);

                        if (row >= 1 && row <= 4)
                            System.out.println(STAR + "        " + STAR);

                        if (row == 10 && col == 10)
                            System.out.println(star1);


                    }

                }

Any help/advice is welcomed regarding the dynamism of the code. Thank you!

share|improve this question
Your code does not show where you capture the user input. – assylias Mar 28 '12 at 17:50
I suggest you start by trying to debug your program with your debugger. Is there any reason your columns increment by 10? – Peter Lawrey Mar 28 '12 at 17:51
You have hard coded so many values here that it will not work if the user supplies anything other than ten. You will need to change your definition of star1 based on the user input as well as a host of other things! And what is the row >=1 && row <=1? It seems wrong and won't work for ten also. – Dharini Chandrasekaran Mar 28 '12 at 17:52
Also, add the homework tag if it is homework please. – Dharini Chandrasekaran Mar 28 '12 at 17:54

7 Answers

this should work

    public static void hallowSquare(int side)
{
    int rowPos, size = side;

    while (side > 0)
    {

        rowPos = size;

        while (rowPos > 0)
        {

            if (size == side || side == 1 || rowPos == 1 || rowPos == size)
                System.out.print("*");

            else
                System.out.print(" ");
            rowPos--;
        }
        System.out.println();
        side--;

    }       

}
share|improve this answer
class Square 
{

    public static void main(String[] args) 
    {
        String tenStars="**********";
        String oneStar="*";
        int count=0;

        System.out.println(tenStars);
        count++;
        while(count<=8)
        {
            System.out.println(oneStar+"     "+oneStar);
            count++;
        }
        System.out.print(tenStars);

    }
}
share|improve this answer

Like mentioned above, the nested for loop is unnecessary and can be inefficient if you plan to create larger rectangles in the future (not saying you're going to have to but try to stay away from nested for loops if you can). Instead, just print star1 before your loop begins and after it exits. The body of the loop should be simple enough. Hope this helps.

share|improve this answer
String star = "*";
String space = " ";

int MAX = xxx;

for (int row = 0; row < MAX; row++) {
  for (int col = 0; col < MAX; col++) {
    if (row == 0 || row == MAX - 1) {
      System.out.println(star);
    } else if (col == 0 || col == MAX - 1) {
      System.out.println(star);
    } else {
      System.out.println(space);
    }
  }
}
share|improve this answer

Also take a look at your last if statement there where it says if (row == 10 && col == 10) and think about it for a second. Once you have hit 10 rows and 10 columns, you are just going to print your final horizontal line of star1 regardless of what MAX is set too.

share|improve this answer

You should change the 3 occurrences of 10 in your two for loops by the MAX variable, so when the user define another size, your for loop will take his input instead of the 10 value.

share|improve this answer

Look at your nested loop:

for (int col = 0; col <= MAX ; col += 10) {

So when col is 10, you're really only just iterating once... you might as well not have the nested loop at all.

Additionally, both star1 and the string literal with spaces have a fixed number of characters in them, clearly related to the number of columns.

I'm assuming this is homework, so I won't give any more hints than that to start with, but hopefully that'll get you thinking along the right lines...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.