"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!

[1491 byte] By [boredguya] at [2007-11-27 10:17:49]
# 1

What do you think < SIZE > does?

georgemca at 2007-7-28 15:53:54 > top of Java-index,Java Essentials,New To Java...
# 2

What about this also:

final char DOT = ".";

_helloWorld_a at 2007-7-28 15:53:54 > top of Java-index,Java Essentials,New To Java...
# 3

and this

for (i = 1;

must be an assignment in debugging

Michael_Dunna at 2007-7-28 15:53:54 > top of Java-index,Java Essentials,New To Java...