![]() |
#2
yms1232012-04-08 15:40
|
public partial class Default2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{for(int i=1;i<=9;i++)
{for(int j=1;j<=i;j++)
{Response.Write(i.TbString()+""+j.TbString()+"="+(i*j).TbString());
Response.Write (" ");
}
}
Response .Write ("<br/>");
}
}