在Java中,你可以使用嵌套循環(huán)來打印輸出九九乘法表。以下是一個(gè)示例代碼:
public class MultiplicationTable {
public static void main(String[] args) {
// 外層循環(huán)控制行數(shù)
for (int i = 1; i <= 9; i++) {
// 內(nèi)層循環(huán)控制列數(shù)
for (int j = 1; j <= i; j++) {
System.out.print(j + "x" + i + "=" + (i * j) + "\t");
}
// 換行
System.out.println();
}
}
}
運(yùn)行這段代碼,你將看到九九乘法表的輸出。