"illegal start of expression" (can't find this one)
Hey,
Anyone want to take a quick peek at this one for me? Thanks. The error is on the line with the long if statement.
class blah
{
publicstaticvoid main (String [] args)
{
finalchar STAR ='*';
finalchar DOT =".";
finalint SIZE = 5;
for (i = 1; i < SIZE ; i++)
{
for (int j = 1; j <= SIZE; j++ )
{
if( ( ( i-3) * (i-3) + (j-3) * (j-3)) <SIZE> )
{
System.out.print(STAR);
}
else
{
System.out.print(" " + DOT );
}
}
}
}
}
Thanks!

