for(int i =1,j=1;j<10;i++){ system.out.print(i+"*"+j+"="+i*j); if(i==j){ i=0; j++; system.out.println(); } }