> What is wrong with my Java code ?

What is wrong with my Java code ?

Posted at: 2014-12-18 
Either start with i=1 or change the for loop end condition to i
You also have a comma (,) instead of a semicolon (;) after "int i=0". The three expressions in a for loop header need to be separated by semicolons.

No can see it so write it out.