<%
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
out.print( i+"*"+j+"="+i*j + "
");
if(j == 9)
{
out.print("
");
}
}
}
%>
全站熱搜
留言列表