In the 1st place your for loop structure was wrong so it won't compile. you can use for(i=1 ;i<=10 ; ) but not for(i=1;i<=10) . Unless ur using the enhanced for loop which is there from java 1.5 onwards but that also uses a colon ( : ) not a semi-colon. And y r u proceeding to print i without...