文章列表
public class Nine{
public static void main(String arg[]){
for(int i=1,j=1;i<=9;j++){
String n =" ";
if((j==2 && i==3) || (j==2 && i==4)){ n=" ";}
System.out.printf("%dX%d=%d%s",j,i,i*j,n);
if(i==j){
...