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
<!--for循环实现九九乘法表--> <table border="> <tbody> {% for x in range(1,10) %} <tr> {% for y in range(1,x + 1) %} <td> {{ y }} * {{ x }} = {{ y * x }} </td> {% endfor %} </tr> {% endfor %} </tbody> </table&
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Typ
--第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()