顶部有Java代码乘法表标签

时间:2016-08-05 16:33:33

标签: java

我似乎无法让我的代码看起来像我下面链接的图片中的乘法表。我需要在表格中将数字设置在“-------”之上。我有标签,但无论我尝试多少,似乎我无法在顶部获得标签。

http://imgur.com/a/rwsaD

public class MultiplicationTable {

public static void main(String[] args) {
    int tableSize = 10;
    printMultiplicationTable(tableSize);
}

public static void printMultiplicationTable(int tableSize) {
    System.out.format("      ");
    for(int a = 1; a<=tableSize;a++ ) {
        System.out.format("%4d",a);
    }
    System.out.println();
    System.out.println("------------------------------------------");

    for(int a = 1 ;a<=tableSize;a++) {
        System.out.format("%4d |",a);
        for(int b=1;b<=tableSize;b++) {
            System.out.format("%4d",a*b);
        }
        System.out.println();
    }
}

}

0 个答案:

没有答案