下面是用Java打印九九乘法表的示例代碼:
public class MultiplicationTable {
public static void main(String[] args) {
int n = 9;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= i; j++) {
System.out.print(j + " * " + i + " = " + (i*j) + "\t");
}
System.out.println();
}
}
}
這段代碼使用兩個嵌套的for循環,外層循環控制行數,內層循環控制列數。在內層循環中,通過System.out.print()
方法打印每個乘法表達式,并使用\t
進行分隔。在內層循環結束后,使用System.out.println()
方法換行,打印下一行的乘法表達式。