asp.net显示相同数字相乘的结果,直到数值大于150为止
程序员文章站
2024-03-05 21:26:01
复制代码 代码如下: int max = (int)Math.Sqrt(150) + 1; for (int i = 1; i <= max; i++) { int...
复制代码 代码如下:
int max = (int)Math.Sqrt(150) + 1;
for (int i = 1; i <= max; i++)
{
int j = i * i;
Response.Write(i + " × " + i + " = " + j + "<br />");
}
结果: