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 ++){ Syst
九九乘法表的实现: package com.liaojianya.chapter1; /** * This program demonstrates the way of using * for-loop to implement the multiplication tables. * @author LIAO JIANYA * 2016年7月19日 */ public class ForDemo { public static void main(String[] args) { for(i
--第4题 输出99乘法表 function PrintMulitiplyTable() , do local res = {} local str = "" , i do res[j] = i * j str = table.concat(res, " ") end print(str) end end PrintMulitiplyTable()