package boOrder;
import java.util.Scanner;
public class MuSytem {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("输入乘法列表数:");
Scanner scanner = new Scanner(System.in);
int a= scanner.nextInt();
MuteSystem(a);
}
//乘法列表 ,到多少
static void MuteSystem(int a) {
for(int i =1 ; i<=a ; i ++) {
for(int j = 1 ; j <=i; j++) {
System.out.print(j+"*"+i+"="+(i*j)+"\t");
}
System.out.println();
}
}
}