<%
    int i,j;
    for(i=1;i<10;i++)
    {
        for(j=1;j<=i;j++)
        {
            out.println(i+"*"+j+"="+(i*j));
        }
        out.println("<br>");
    }
%>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-03-09
  • 2022-12-23
  • 2021-12-10
  • 2022-01-20
猜你喜欢
  • 2021-12-09
  • 2021-12-09
  • 2022-12-23
  • 2021-10-24
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
相关资源
相似解决方案