双层for循环输出九九乘法表

package course;

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();
		}
	}
}

posted on 2017-05-10 20:00  社会你锋哥  阅读(591)  评论(0编辑  收藏  举报

导航