可以使用嵌套循环来输出99乘法表,代码如下:
public class MultiplicationTable { public static void main(String[] args) { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= i; j++) { System.out.print(j + " * " + i + " = " + (i * j) + "\t"); } System.out.println(); } } }
运行以上代码,即可输出99乘法表。