public class MultiplicationTable {
/** * @description 写一个方法,用一个for循环打印九九乘法表 * @author wangkun * @param args */ public static void main(String[] args) { int i,j; for (i = 1 ; i <= 9 ; i ++){ for(j = 1 ; j <= i ; j ++){ System.out.print(j + "*" + i + "=" + i * j + " "); } System.out.println(); }
}}
转载于:https://www.cnblogs.com/kunpengit/p/3145927.html
相关资源:循环数列问题(带数据)