标签:
package org.demo; public class DemoCheng { public static void main(String[] args) { for (int i = 1; i < 10; i++) { for (int j = 1; j < i+1; j++) { System.out.print(j+"*"+i+"="+(i*j)+" "); } System.out.println(); } } }
结果
标签:
原文地址:http://www.cnblogs.com/liuhuanping/p/4381476.html