Java 99乘法表
package cn.zyrcc.demo.test;
public class test99 {
public static void main(String[] args){
System.out.println("乘法口诀:");
for (int i = 1 ; i <= 9 ; i++) {
for (int j = 1 ; j <= i ; j++){
System.out.print(j + "*" + i + "=" + i * j + " ");
}
System.out.println();
}
}
}