Hi i am doing my coursework and i have been given the task is to make an algorithm for a square that's 5x5 using "*" but has to be filled in with "." so like this:
*****
*...*
*...*
*...*
*****
I have used this code I know its probably very messy because im an absolute beginner to this stuff. I cant seem to get the "." in i currently have:
*****
*****
*****
*****
*****
here is my code:
public static void main( String args[] )
{
System.out.print ("#size of square");
int stars=BIO.getInt();
int j=1;
while(j <= stars)
{
int starsNumber=1;
while (starsNumber<= stars)
{
int i = 1; // Display trunk
starsNumber=starsNumber+1;
System.out.print('*');
}
System.out.println();
j= j +1;
}
}
p.s sorry for been so bad at coding :D and any help would be much appreciated thanks Gareth
.at all – harold Oct 27 '11 at 17:10